帝国软件
  设为首页 加入收藏 关于我们
 
解密帝国网站管理系统
栏 目:
 
您的位置:首页 > 技术文档 > ASP编程
如何在ASP+中发送邮件
作者: 发布时间:2005-03-12 来源:
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中如何访问Novell下的数据库  (2005-03-12)
 ·如何解决“Server is too busy”  (2005-03-12)
 ·关于如何动态地在同一页面实现两  (2005-03-12)
 ·如何使ASP输出结果不支持html语法  (2005-03-12)
 ·ASP+中文教程(一)--asp+简介、  (2005-03-12)
 ·如何在Web页面中集成文件上传功能  (2005-03-12)
 ·如何用ASP创建日志文件  (2005-03-12)
 ·如何只安装.NET的文档,而不安装  (2005-03-12)
 ·如何用ASP建立图表  (2005-03-12)
 ·如何在ASP中通过ODBC调用Excel中  (2005-03-12)

   栏目导行
  PHP编程
  ASP编程
  ASP.NET编程
  JAVA编程
   站点最新
·致合作伙伴的欢迎信
·媒体报道
·帝国软件合作伙伴计划协议
·DiscuzX2.5会员整合通行证发布
·帝国CMS 7.0版本功能建议收集
·帝国网站管理系统2012年授权购买说
·PHPWind8.7会员整合通行证发布
·[官方插件]帝国CMS-访问统计插件
·[官方插件]帝国CMS-sitemap插件
·[官方插件]帝国CMS内容页评论AJAX分
   类别最新
·在ASP中使用数据库
·使用ASP脚本技术
·通过启动脚本来感受ASP的力量
·学习使用ASP对象和组件
·解析asp的脚本语言
·初看ASP-针对初学者
·ASP开发10条经验总结
·ASP之对象总结
·ASP与数据库应用(给初学者)
·关于学习ASP和编程的28个观点
 
关于帝国 | 广告服务 | 联系我们 | 程序开发 | 网站地图 | 留言板 帝国网站管理系统