首页 > 编程 > .NET > 正文

.net 2.0 下发送邮件的方式

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

    在.net framework 1.x 我们需要使用 system.web.mail 命名空间下的类 来进行发送邮件,但是功能比较弱,比如你的邮件服务器需要验证才能发送邮件,在.net 1.1 中,需要用下面的代码来做额外配置。

mail.fields.add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"
, "1");
mail.fields.add("http://schemas.microsoft.com/cdo/configuration/sendusername"
, "my_username_here");
mail.fields.add("http://schemas.microsoft.com/cdo/configuration/sendpassword"
, "super_secret");

.net 1.x 下发送邮件的方式请参考:
http://blog.joycode.com/joy/archive/2004/01/14/11405.aspx

.net framework 2.0 下,在 system.net.mail 命名空间中提供了对邮件操作的支持,他的功能更强大。比如你的邮件服务器需要验证才能发送邮件,代码就只需简单成如下:

public static void sendsmtpemail(string strsmtpserver, string strfrom,
string strfrompass, string strto, string strsubject, string strbody)...{ system.net.mail.smtpclient client = new smtpclient(strsmtpserver); client.usedefaultcredentials = false; client.credentials =
new system.net.networkcredential(strfrom, strfrompass); client.deliverymethod = smtpdeliverymethod.network; system.net.mail.mailmessage message =
new mailmessage(strfrom, strto, strsubject, strbody); message.bodyencoding = system.text.encoding.utf8; message.isbodyhtml = true; client.send(message);}

我们可以通过修改 usedefaultcredentials  credentials  deliverymethod  等属性,方便的支持各种情况下发送邮件的方式。

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