最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
发送带附件的HTML格式邮件例程可以带附件
时间:2022-06-30 11:34:11 编辑:袖梨 来源:一聚教程网
如何通过 ASP 来发送带附件、格式为 HTML 的邮件?下面提供了一个例程.
<%@ LANGUAGE=VBScript%>
<%
Response.Buffer = True
Response.Expires = 0
'创建对象实例
Set myMail = Server.CreateObject("CDONTS.NewMail")
'以下是将要发送的内容
HTML = ""
HTML = HTML & ""
HTML = HTML & "Sending CDONTS Email Using HTML "
HTML = HTML & ""
HTML = HTML & ""
HTML = HTML & "
HTML = HTML & ""
HTML = HTML & ""
'发件人
myMail.From = "[email protected]"
'收件人
myMail.To = "[email protected]"
'密件抄送
myMail.Bcc = "[email protected]"
'抄送
myMail.Cc = "[email protected]"
'邮件的重要性
' 0 重要性低
' 1 重要性一般(默认)
' 2 重要性高
myMail.Importance = 2
'邮件主题
myMail.Subject = "Test mail in HTML"
'附件(注意 e: est.txt 指的是服务器上的位置,如果使用相对路径,必须用 Server.MapPath 映射为真实路径)
myMail.AttachFile "e: est.txt"
'NewMail 对象的文字格式
'0 表示该 Body 可包含超文本置标语言 (HTML)
'1 表示该 Body 只用于纯文本(默认值)
myMail.BodyFormat = 0
'NewMail 对象设置编码
'0 表示将采用 MIME 格式
'1 表示将采用连续的纯文本(默认值)
myMail.MailFormat = 0
'给邮件对象的文本赋值
myMail.Body = HTML
'将邮件发出
myMail.Send
'销毁对象实例,释放内存
Set myMail = Nothing
%>
<%@ LANGUAGE=VBScript%>
<%
Response.Buffer = True
Response.Expires = 0
'创建对象实例
Set myMail = Server.CreateObject("CDONTS.NewMail")
'以下是将要发送的内容
HTML = ""
HTML = HTML & ""
HTML = HTML & "
HTML = HTML & ""
HTML = HTML & ""
HTML = HTML & "
"
HTML = HTML & "This is a test mail in html
"
HTML = HTML & "Mail content here ...
HTML = HTML & ""
HTML = HTML & ""
'发件人
myMail.From = "[email protected]"
'收件人
myMail.To = "[email protected]"
'密件抄送
myMail.Bcc = "[email protected]"
'抄送
myMail.Cc = "[email protected]"
'邮件的重要性
' 0 重要性低
' 1 重要性一般(默认)
' 2 重要性高
myMail.Importance = 2
'邮件主题
myMail.Subject = "Test mail in HTML"
'附件(注意 e: est.txt 指的是服务器上的位置,如果使用相对路径,必须用 Server.MapPath 映射为真实路径)
myMail.AttachFile "e: est.txt"
'NewMail 对象的文字格式
'0 表示该 Body 可包含超文本置标语言 (HTML)
'1 表示该 Body 只用于纯文本(默认值)
myMail.BodyFormat = 0
'NewMail 对象设置编码
'0 表示将采用 MIME 格式
'1 表示将采用连续的纯文本(默认值)
myMail.MailFormat = 0
'给邮件对象的文本赋值
myMail.Body = HTML
'将邮件发出
myMail.Send
'销毁对象实例,释放内存
Set myMail = Nothing
%>
相关文章
- 绝区零真斗技能详解 10-14
- 原神千星奇域装扮获取途径 10-14
- 火影忍者手游侠隐佐助有哪些玩法技巧 10-14
- 燕云十六声曲岸妙妙喵在哪-曲岸妙妙喵位置分享 10-14
- 明日方舟冬时强度如何 10-14
- 永恒之塔2精灵星怎么玩 10-14