asp.net实现邮件的发送
1
try
2
{
3
CDO.Message Msg = new CDO.Message();
4
Msg.From = "YY@sohu.com";
5
Msg.To = "XX@sohu.com";
6
Msg.Subject = "主题";
7
Msg.HTMLBody = "<html><body>" + "内容"
8
+ "</body></html>";
9
CDO.IConfiguration Config = Msg.Configuration;
10
ADODB.Fields oFields = Config.Fields;
11
oFields["http://schemas.microsoft.com/cdo/configuration/sendusing"].Value = 2;
12
oFields["http://schemas.microsoft.com/cdo/configuration/sendemailaddress"].Value = "YY@sohu.com";
13
oFields["http://schemas.microsoft.com/cdo/configuration/smtpaccountname"].Value = "YY@sohu.com";
14
oFields["http://schemas.microsoft.com/cdo/configuration/sendusername"].Value = "YY";
15
oFields["http://schemas.microsoft.com/cdo/configuration/sendpassword"].Value = "password";
16
oFields["http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"].Value = 1;
17
oFields["http://schemas.microsoft.com/cdo/configuration/languagecode"].Value = 0x0804;
18
oFields["http://schemas.microsoft.com/cdo/configuration/smtpserver"].Value = "smtp.sohu.com";
19
oFields.Update();
20
Msg.BodyPart.Charset = "gb2312";
21
Msg.HTMLBodyPart.Charset = "gb2312";
22
Msg.Send();
23
Msg = null;
24
}
25
catch (Exception err)
26
{
27
throw err;
28
}[ftc=#EE1D24]<font color=red></font>[/ft]

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
