用c#和jmail开发Asp.net的mail发送

类别:.NET开发 点击:0 评论:0 推荐:

Asp.net中的mail的发送

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

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

 

Logging属性:是否使用日志

 

Silent属性:如果设置为true,JMail不会抛出例外错误. JMail. Send( () 会根据操作结果返回truefalse

 

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]

      

本文地址:http://com.8s8s.com/it/it45610.htm