在ASP中發送電子郵件可以使用CDOSYS組件。以下是一個簡單的示例代碼:
<%
Dim objMail
Set objMail = Server.CreateObject("CDO.Message")
objMail.From = "you@example.com"
objMail.To = "recipient@example.com"
objMail.Subject = "Test Email"
objMail.TextBody = "This is a test email sent from ASP."
objMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
objMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "smtp.example.com"
objMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
objMail.Configuration.Fields.Update
objMail.Send
Set objMail = Nothing
%>
在此示例中,我們創建了一個CDOSYS郵件對象objMail
,設置了發件人、收件人、主題和內容。然后,我們配置了SMTP服務器和端口,并使用Send
方法發送郵件。
請注意,您需要替換示例中的發件人、收件人、SMTP服務器和端口為您自己的信息。此外,您需要確保您的服務器支持CDOSYS組件。
另外,您也可以使用第三方郵件組件,如JMail或ASPEmail,來發送電子郵件,這些組件通常提供更多的功能和選項。