views:

74

answers:

1

I have a email function which sends email. The thing is done in classic ASP/VBScript and uses

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

JMail. How can I remove extra whitespace (= bad MIME encoding) in the header?

+1  A: 

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"
poo