开发者网络 动网主机 支持论坛 邮局 帮助
当前位置:网络学院ASP技术系统相关 → 如何在ASP+中发送邮件
如何在ASP+中发送邮件
日期:2000年9月9日 作者: 人气:     [ ]
This article features how to send email from an ASP+ page. Using email from an ASP+ page has many uses
(Notify of errors, inform people about a a subject. etc..). This code sample sends a formatted HTML
message to the email address entered. Enjoy this free code!

Here is the code

Page 1. The input form

<html>
<head>
</head>
<body>

<form method="post" name="form1" action="emailhtml2.aspx">
Email Address:<input type="text" name="EmailAddress" size="30" value="youremail@address.com"><br><br>
<input type="submit" value="Send Your Friend an Email using ASP+" name="b1">
</form>
</body>
</html>


Page 2. Sends the email code

<%@ Import Namespace="System.Web.Util" %>

<script language="VB" runat=server>

Sub Page_load(Sender as Object, E as EventArgs)

Dim MyMessage as New MailMessage

MyMessage.To = request.form("EmailAddress")
MyMessage.From = "webmaster"
MyMessage.Subject = "This is message is from ASPFree using ASP+"

Note:We added the BodyFormat to show how to send
formatted HTML remove this line and all the HTML code in
message. The email will send as regular text
MyMessage.BodyFormat = MailFormat.Html

MyMessage.Body = "<html><body><h1>You received this email from <a
href='http://aspfree.com'>ASPFree.com</a> using ASP+!</h1></body></html>"
SmtpMail.Send(MyMessage)

End Sub

</script>
<html>
<head>
<title>Email Formatted HTML message with ASP+</title>
</head>
<body>
You just sent an email message formatted in HTML to:<br>
<h1><% response.write(request.form("EmailAddress")) %></h1>

</body>
</html>

(出处:)

相关文章:
 
·利用ASP+JMAIL进行邮件群发的新思路
·客户端用ASP+rds+VBA参生报表(高级篇)
·NT及低配置老机上用ASP.net的体会--M2上也用ASP+
·ASP+Access的安全隐患及对策
·用ASP+XML打造留言本 - 4
·用ASP+XML打造留言本 - 3
·用ASP+XML打造留言本 - 2
·用ASP+XML打造留言本 - 1
·使用 ASP+ 列表绑定控件(下)
·使用 ASP+ 列表绑定控件(中)
相关软件:
 
·ASP+XML 精美留言本
·ASP+ config.web Editor(XML)
·asp+高级教程
·显示系统日志(ASP+例子)
·ASP+性能测试源程序
·ASP+图像计数器
·ASP+ config.web Editor(XML)
·asp+高级教程
说明:本站部分内容收集于网络,如有侵犯您的权益请来信告知,我们会第一时间进行处理,谢谢
 → 特别推荐
 → 热点TOP10

关于本站 | 诚聘英才 | 业务合作 | 联系我们 | 广告合作 | 收藏本站

海口动网先锋网络科技有限公司版权所有
Copyright ? 2000 - 2003 AspSky.Net
中华人民共和国电信与信息服务业务经营许可证编号 琼 ICP 020077