ASP 上配合 ASPEmail 物件使用 SMTP 驗證發信, 請參考下列程式範例:
<%
Set objMail = Server.CreateObject("Persits.MailSender")
'SMTP 伺服器位址
objMail.Host = "xxx.yourdomain.com"
'SMTP 伺服器使用者名稱
objMail.Username = "user@yourdomain.com"
'SMTP 伺服器使用者密碼
objMail.Password = "********"
objMail.From = "frommail@yourdomain.com" '發信者電子信箱
objMail.AddAddress "tomail@yourdomain.com" '收件者電子信箱
objMail.Subject = "Mail Subject" '發信主題
objMail.Body = "Test message." '信件內容
On Error Resume Next
objMail.Send
If Err = 0 then
txtMsg = "信件寄送完成"
Else
txtMsg = "信件寄送失敗"
End If
%> |