C#中使用smtp发送邮件
MailMessage m = new MailMessage
("jane@75271.com",
"ben@75271.com",
"This is the subject for the email.",
"This is the body of the mail!...");
// Send the message,请见smpt.75271.com替换成你自己的smtp服务器
SmtpClient client = new SmtpClient("smtp.75271.com");
client.Send(m);
