asp.net利用SmtpClient发送邮件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114 |
using
System; using
System.Data; using
System.Web.UI; using
System.Data.OracleClient; using
DBUtility; using
System.Text.RegularExpressions; using
System.Net; using
System.Net.Mail; using
System.Xml; using
System.Net.Mime; using
System.Text; using
System.Collections.Generic; public
partial
class
Page_ForgetPass : System.Web.UI.Page { protected
void
Page_Load( object
sender, EventArgs e) { } //提交邮件 protected
void
btnMailSub_Click( object
sender, EventArgs e) { //判断用户填入的邮箱地址是否在系统里面注册 if
(1 > 2) //自行修改一下 { } else { string
pass = GetPassByEmail(emailAdd); //通过邮件获取密码 //发送邮件修改密码 try { Dictionary< string , string > mailInfo = ReadXML(); //读取配置文件,获取发送人、收件人信息 string
fromalias = mailInfo[ "fromalias" ]; //发件人显示名字(别名,默认情况下显示发件人邮箱地址)。如:小龙,不写发件人则显示[email protected] string
subject = mailInfo[ "subject" ]; //邮件标题。如:发送邮件的标题 string
body = mailInfo[ "body" ]; //邮件正文。如:发送邮件正文 string
host = mailInfo[ "host" ]; //发送邮件服务器(smtp.加上服务器地址)。如sina.com.cn——新浪域名 MailAddress from
= new
MailAddress(fromEmailAdd); //发送邮件邮箱地址 MailAddress to = new
MailAddress(toEmailAdd); //发送邮件邮箱密码 MailMessage message = new
MailMessage(); message.To.Add(to); message.From = new
MailAddress(fromEmailAdd, fromalias, Encoding.UTF8); string
bb = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">" ; bb += "<html>" ; bb += "<head>" ; bb += "<title></title>" ; bb += "<style type=\"text/css\">" ; //bb += "div{ width:100px; height:100px; background-color:Red;}"; bb += "</style>" ; bb += "</head>" ; bb += "<body>" ; bb += "<div>" ; bb += "尊敬的用户,您的密码是:"
+ pass + ",请妥善保管您的密码!【世友租车】" ; bb += "</div>" ; bb += "</body>" ; bb += "</html>" ; message.IsBodyHtml = true ; //是否是html message.Priority = MailPriority.High; //优先级 message.Subject = subject; //发送邮件标题 message.SubjectEncoding = Encoding.UTF8; //标题编码 message.Body = bb; message.BodyEncoding = Encoding.UTF8; //正文编码 SmtpClient client = new
SmtpClient(); client.DeliveryMethod = SmtpDeliveryMethod.Network; client.Port = 25; client.Host = "smtp."
+ host; //发送邮件服务器地址 client.Credentials = new
System.Net.NetworkCredential(fromEmailAdd, fromEmailAddPass); //发送邮件邮箱地址和密码 client.Send(message); string
mess = Server.UrlEncode( "密码已发送到您指定的邮箱,请注意查收!" ); Response.Redirect( "BackPass.html?mess="
+ mess); } catch
(Exception ex) { } } } catch
(Exception ex) { } } //读取配置文件,获取邮件发送服务器信息 private
Dictionary< string , string > ReadXML() { Dictionary< string , string > hashMail = new
Dictionary< string , string >(); try { XmlDocument xmlDoc = new
XmlDocument(); xmlDoc.Load(Server.MapPath( "xml/mail.xml" )); //加载xml文件 XmlNode root = xmlDoc.SelectSingleNode( "mailinfo" ); //获取根节点 //遍历所有节点,根节点除外。 //将所有的节点名字和内容以键值对的方式存储。 if
(root.HasChildNodes) { foreach
(XmlNode node in
root.ChildNodes) { hashMail.Add(node.Name, node.InnerText); } } } catch
(Exception ex) { } return
hashMail; } } |
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。