首页 > 编程 > .NET > 正文

Asp.net中的mail的发送

2024-07-10 13:10:40
字体:
来源:转载
供稿:网友

现在的邮件发送大多数需要验证,我写这篇文章是希望对大家开发项目有所帮助,也希望大家能给我提点意见。

把jmail引用到工程中,加入jmail的命名空间,在这里我将引用jmail包的messageclass类。

logging属性:是否使用日志

silent属性:如果设置为true,jmail不会抛出例外错误. jmail. send( () 会根据操作结果返回true或false

mailserverusername属性:发信人的用户名,如:[email protected];

mailserverpassword属性:发信人的密码

from属性:发信人

subject属性:主题

addattachment()方法:附加文件

body属性:邮件正文。

下面是一个完整的例子:

public bool sendmail()

{

         messageclass email = new messageclass();

          email.logging = true;

          email.silent = true;

          email.mailserverusername = "[email protected]";

          email.mailserverpassword = "124";

          email.from = "[email protected]";

        email.subject = "jmail";

          email.addattachment("c://test.xml",true,"");

          email.body = "test jmail send mail";

          email.addrecipient("[email protected]", "abc", null);

          return email.send("mail.163.com", false)

     }

作者:潘敏

e-mail:[email protected]

msn:[email protected]

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