我编写了一个发送 HTML 电子邮件的脚本。在Gmail里很好用,但是我在outlook打开,全是中文的。
我了解了 MIME 电子邮件 - 发送 2 个版本的电子邮件,一个带有 HTML 和一个纯文本,但不知道如何创建一个。我在某处看到您需要带有私钥的证书。
有人可以解释如何使它工作吗?
这是我的电子邮件发送代码:
'Send an email
strSMTPFrom = "Test@hp.com"
strSMTPTo = email 'Email taken from array
strSMTPRelay = "smtp1.hp.com"
strTextBody = strContent 'Content taken from the template
Set oMessage = CreateObject("CDO.Message")
oMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
oMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = strSMTPRelay
oMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
oMessage.Configuration.Fields.Update
oMessage.Subject = strSubject
oMessage.From = strSMTPFrom
oMessage.To = strSMTPTo
oMessage.HTMLBody = strTextBody
oMessage.Send