3

我找到了这个 发送邮件的解决方案,但它给了我错误。这是我的价值观:

Message to: anton_putov@mail.ru

Message from: anton_putov@mail.ru

subject: ....
.........

我正在使用 Visual Studio 2010。我必须设置任何配置属性或其他内容吗?

4

1 回答 1

5

您使用的是什么类型的 SMTP?如果您没有自己的 SMTP 设置,那么您可以使用 Google Mail。在这里你可以如何使用它。

MailMessage mail = new MailMessage();
  mail.To.Add("Email ID where email is to be send");
  mail.To.Add("Another Email ID where you wanna send same email");
  mail.From = new MailAddress("YourGmailID@gmail.com");
  mail.Subject = "Email using Gmail";

  string Body = "Hi, this mail is to test sending mail"+ 
                "using Gmail in ASP.NET";
  mail.Body = Body;

  mail.IsBodyHtml = true;
  SmtpClient smtp = new SmtpClient();
  smtp.Host = "smtp.gmail.com"; //Or Your SMTP Server Address
  smtp.Credentials = new System.Net.NetworkCredential
       ("YourUserName@gmail.com","YourGmailPassword");
//Or your Smtp Email ID and Password
  smtp.EnableSsl = true;
  smtp.Send(mail);
于 2012-12-15T13:08:05.890 回答