用EasyMailObject组件处理Exchange邮件源代码(5)

ASP教程 2025-08-14

在ASP中用EasyMailObject组件处理Exchange邮件源代码---发送邮件(p_sendmail.asp)

<%@ Language=VBscript %>
<%
'*************************************

'这个文件用来发送邮件
'作者:awayeah
'邮箱:awayeah@163.net

'*************************************

if session("straccount")="" or session("strpassword")="" then
Response.End
end if
%>






<%Set SMTP = CreateObject("EasyMail.SMTP.5")
SMTP.LicenseKey = "awa/S19I500R1AX30C0R3100"
SMTP.MailServer = "192.9.200.89"
SMTP.Subject = Request.Form("subject")
SMTP.BodyText = Request.Form("bodytext")
SMTP.From = Request.Form("from")
SMTP.FromAddr = Request.Form("fromaddr")
SMTP.AddRecipient Request.Form("from"), Request.Form("receive1") , 1

'添加附件
if Request.Form("att")="" then
Response.Write ""
else
x = SMTP.AddAttachment(Request.Form("att"), 0)
If Not x = 0 Then
Response.Write "插入附件错误: " + cstr(x) + "请与管理员联系。"
End If
end if
x = SMTP.Send

If x = 0 Then
'Response.Write ("



")
'Response.Write ("

邮件已成功发出!"
'session("sended")="Y"
Else
if x=7 or x=5 then
Response.Write "

发邮件发生错误(" + cstr(x)+ ").发件人地址错误"%>



<%Response.End
else
Response.Write "

发邮件发生错误: "+ cstr(x)+ ""%>



<%Response.End
end if
End If


Set SMTP = Nothing

%>


返回