特色栏目

ASP源码

PHP源码

.NET源码

JSP源码

游戏频道
专题合集
关闭菜单
首页> ASP教程> Jmail发信的实例,模块化随时调用

Jmail发信的实例,模块化随时调用

时间:2009-06-23 16:40:48 作者:互联网

一个用jmail发信的过程,及使用方法.
发信时,直接调用这个过程就行了。

<%
dim str,HtmlBody
HtmlBody="

I Love 2Yup!

"

str=JmailSend( "hello","ILoveYou",true,HtmlBody,"yo***[email protected]",yo***[email protected]">yo***[email protected],
"hello","sm***sina.com.cn","hello","Password")

if str="Y" then
  response.write("发送成功")
else
  response.write("发送失败!请重试!")
end if
'=================================================
'函数名:JmailSend
'作  用:用Jmail发送邮件
'参  数:Subject  邮件标题
'        Body     邮件内容
'        Body     邮件内容
'        isHtml   是否发送Html格式邮件 (true 是)
'        HtmlBody Html格式邮件内容
'    MailTo   收件人Email
'        From     发件人Email
'        FromName 发件人姓名
'        Smtp     smtp服务器
'        Username 邮箱用户名
'        Password 邮箱密码
'返回值:JmailSend="N" 发送失败 JmailSend="Y" 发送成功
'~~~~~~~~~~suercool~~~~~

'=================================================

function JmailSend(Subject,Body,isHtml,HtmlBody,MailTo,From,FromName,Smtp,Username,Password)
  dim JmailMsg
  set JmailMsg=server.createobject("jm***.message")
  Jm***Msg.mailserverusername=Username
  Jm***Msg.mailserverpassword=Password
 
  Jm***Msg.addrecipient MailTo
  Jm***Msg.from=From
  Jm***Msg.fromname=FromName
 
  JmailMsg.charset="gb2312"
  Jm***Msg.logging=true
  Jm***Msg.silent=true
 
  Jm***Msg.subject=Subject
  Jm***Msg.body=Body
  if isHtml=true then Jm***Msg.htmlbody=HtmlBody
 
  if not Jm***Msg.send(Smtp) then
      JmailSend="N"
  else
      JmailSend="Y"
  end if
  JmailMsg.close
  set JmailMsg=nothing
end function
 
%>
相关文章 最新文章

相关应用

热门文章

猜你喜欢

返回顶部