1

我有一个发送电子邮件的电子邮件功能。这件事是在经典的 ASP/VBScript 中完成的,并使用

Set objMail = Server.CreateObject("JMail.SMTPMail")

邮件。如何删除标头中的额外空格(= 错误的 MIME 编码)?

4

1 回答 1

1

I fixed it. The solution was simple when I figured out what to do.

 objMail.MimeVersion = "1.0"
        objMail.SimpleLayout = true
        objMail.ContentTransferEncoding = "base64"
        objMail.Charset = "UTF-8"
于 2010-02-17T12:54:21.980 回答