当前位置: 首页 > 图文教程 > 网络编程 > ASP > 用ASP发 WAP MAIL(=)

ASP
保护 XML Web 服务免受黑客攻击
开发BtoC电子商务系统(ASP.NET)
用asp.net实现的把本文推荐给好友功能
尝尝ASP.NET中的小甜饼
web.config一个中文解释
使用ASP.NET加密口令
在SQL Server中保存和输出图片
ASP 中健壮的页结构的异常处理
如何使你的机器运行ASP?
asp(Active Server Page)的语言特性
关于inc文件
IE4 的 模 式 对 话 框 设 计
亲密接触ASP.net(6)
亲密接触ASP.Net(7)
用ASP.Net写一个发送ICQ信息的程序
用ASP.Net编写的查询域名的程序
使用 ASP+ 列表绑定控件(上)
使用 ASP+ 列表绑定控件(中)
使用 ASP+ 列表绑定控件(下)
揭开ASP神秘面纱(1)

用ASP发 WAP MAIL(=)


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 124 ::
收藏到网摘: n/a

  mail.asp
<%
Response.Buffer = True
Response.ContentType = "text/vnd.wap.wml"
Response.Write "<?xml version=""1.0
%>
    <%
    Set Mail = Server.CreateObject("Persits.MailSender")
  '---------------------------------------------------------
  ' 你可以修改ISP的邮件服务器 '
    Mail.Host = "pun.chaozhou.gd.cn"                         '
  '---------------------------------------------------------
    Mail.From = Request.Form("From")
    Mail.FromName = Request.Form("From")
    Mail.AddAddress Request.Form("To"), Request.Form("To")
    Mail.Subject = Request.Form ("Subject")
    Mail.Body = Request.Form("Body") + vbCrLf + vbCrLf + _
                "_________________________________________________" + vbCrLf + _
                " Message sent via Manas' WAPMail "  + vbCrLf + _
                " http://www.e8899.com/"

    On Error Resume Next
    Mail.Send
    Dim Report
If Err <> 0 Then
Report = "Error: " & Err.Description
Else
Report = "Message sent to " & Request.Form("To")
End If
    %>
<wml>
  <card title="e8899.com's WAP Mail">
    <p>
      <%= Report %>
      <br/>
      <br/>
      <a href="default.asp#Send">发另一封</a>
    </p>
    <p>
      <small><a href="http://www.e8899.com">e8899.com</a></small>
    </p>
  </card>
</wml>