首页 > 编程 > ASP > 正文

asp+发送email

2024-05-04 11:06:32
字体:
来源:转载
供稿:网友
来源:http://www.aspfree.com/asp+/demos/emailhtml1.aspx

html1.htm
---------------------------------------------------------------------
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
</head>
<body>

<form method="post" name="frmemail" action="email.aspx" >
发送邮件给:<input type="text" name="mailto" size="30" value="[email protected]"><br><br>
<input type="submit" value="asp+ 邮件发送" name="cmdsubmit">
</form>
</body>
</html>

emal.aspx
---------------------------------------------------------------------
<%@ import namespace="system.web.util" %>
<script language="vb" runat=server id=script1>

sub page_load(sender as object, e as eventargs)

dim mymail as new mailmessage

mymail.to = request.form("mailto")
mymail.from = "webmaster"
mymail.subject = "webmaster给您发了一封电子邮件"

mymail.bodyformat = mailformat.html

mymail.body = "<html><body><h1><a href='http://www.chinaasp.com'>chinaasp.com</a> 使用asp+程序给你发了一封email! hohoho!</h1></body></html>"
smtpmail.send(mymail)

end sub

</script>
<html>
<head>
<title>asp+邮件发送</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
</head>
<body>
一封html格式邮件发送到了:<br>
<h1><% response.write(request.form("mailto")) %></h1>

</body>
</html>

--------------------------------------------------------------
我注意到了3点问题:
  • system.web.util
    居然在vs7 pdc preview的msdn library里面没有找到这个内容 :(
    所以没法了解更多详细内容了。
  • 为了让程序发送邮件,你必须开启smtp server,并正确设置之
    微软只使用自己的东西,这一点让我感觉很不爽。
    我使用的是拨号,用mmc编辑smtp server的属性,绑定smtp服务到我拨号时候获得的ip上,就能成功发送邮件了。
  • 让程序正确使用中文
    你必须在当前web目录的config.web中加上下列语句
       <globalization
       requestencoding="gb2312"
       responseencoding="gb2312"
       />
    或者你也可以
    修改winnt/complus/v2000.14.1812目录中的config.web文件
    <globalization
       requestencoding="gb2312"
       responseencoding="gb2312"
    />
  • 好好学习,天天向上

     
    发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表