Asp.net中的mail的发送
现在的邮件发送大多数需要验证,我写这篇文章是希望对大家开发项目有所帮助,也希望大家能给我提点意见。
把jmail引用到工程中,加入jmail的命名空间,在这里我将引用jmail包的messageclass类。
logging属性:是否使用日志
silent属性:如果设置为true,jmail不会抛出例外错误. jmail. send( () 会根据操作结果返回true或false
mailserverusername属性:发信人的用户名,如:;
mailserverpassword属性:发信人的密码
from属性:发信人
subject属性:主题
addattachment()方法:附加文件
body属性:邮件正文。
下面是一个完整的例子:
public bool sendmail()
{
messageclass email = new messageclass();
email.logging = true;
email.silent = true;
email.mailserverusername = "abcdef@163.com";
email.mailserverpassword = "124";
email.from = "abcdef@163.com";
email.subject = "jmail";
email.addattachment("c:\\test.xml",true,"");
email.body = "test jmail send mail";
email.addrecipient("abcdef@163.com", "abc", null);
return email.send("mail.163.com", false)
}
作者:潘敏
e-mail:jspanmin@jcc-net.com
msn:jspanmin@163.com