public void SendMail(string to,string subject,string body,MailAttachment mailatta)
{
MailMessage m_Mail = new MailMessage();
//定义SMTP服务器的名称
SmtpMail.SmtpServer = "mail.13590.com";
//定义SMTP邮件服务器需要身份认证
m_Mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1");
//认证的用户名
m_Mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "username");
//认证密码
m_Mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword","password");
//定义邮件的发送地址
m_Mail.From="\"秋雨\"<username@13590.com>";
//定义邮件的接收地址
m_Mail.To = to.ToString();
//定义邮件的暗送地址
m_Mail.Bcc="bcc@13590.com";
//定义邮件的抄送地址
m_Mail.Cc = "cc@13590.com";
//定义邮件的主题
m_Mail.Subject = subject;
//定义邮件的主体
m_Mail.Body = body;
//'邮件以 HTML的格式发送
m_Mail.BodyFormat = MailFormat.Text;
//定义邮件的有限级,在此设定为高
m_Mail.Priority = MailPriority.High;
// 给发送的邮件附加上一个附件
if (mailatta!=null)
{
m_Mail.Attachments.Add(mailatta);
}
try
{
SmtpMail.Send(m_Mail);
}
catch
{
//邮件发送有错
Memo1.Text=Memo1.Text + subject;
}
}
这段代码中的SmtpMail.SmtpServer = "mail.13590.com";可以写成163邮件服务器
SmtpMail.SmtpServer = "pop.163.net";
还有 下面这段代码 m_Mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "username");
//认证密码
m_Mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword","password");
中的username和password是否可以为我163邮箱的用户名和密码????