0

下面是一个已经在经典 ASP 中工作的代码,用于发送电子邮件。我们可以对此代码实施 SMTP 身份验证吗?

我已经使用 CDO 实现了,但想知道我们是否可以为 CDONTS 实现 SMTP 身份验证。请在下面查看我的代码:

Set objCDO = Server.CreateObject("CDONTS.NewMail")
objCDO.to = "testrecipient@domain.com"
objCDO.From = "testsender@domain.com" 'CustEmail

objCDO.Subject = "Test Subject"
objCDO.BodyFormat = 0 
objCDO.MailFormat = 0 
objCDO.Body = "This is a test message"
objCDO.Importance = 0 'High importance!
objCDO.Send 'Send off the email!
'Cleanup
Set objCDO = Nothing
ReplySent="Email sent!"
Response.write(ReplySent)
Response.End
4

0 回答 0