私はメールを送信するためのこの解決策を見つけ ましたが、それは私に誤りを与えます。私の価値観は次のとおりです。
Message to: anton_putov@mail.ru
Message from: anton_putov@mail.ru
subject: ....
.........
Visual Studio 2010を使用していますが、構成プロパティなどを設定する必要がありますか?
私はメールを送信するためのこの解決策を見つけ ましたが、それは私に誤りを与えます。私の価値観は次のとおりです。
Message to: anton_putov@mail.ru
Message from: anton_putov@mail.ru
subject: ....
.........
Visual Studio 2010を使用していますが、構成プロパティなどを設定する必要がありますか?
使用しているSMTPの種類は何ですか?独自のSMTP設定がない場合は、GoogleMailを使用できます。ここでそれをどのように使うことができますか。
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);