可能性の重複:
Send email using System.Net.Mail through gmail. (C#)C#でSystem.Net.Mailを使用して電子メールを送信する
は、私はC#。ネット を使用して電子メールを送信するには、このコードを使用していますが、それは実行時にエラーが発生し-時間。コードは次のとおりです。
MailMessage MyMailMessage = new MailMessage("[email protected]", "[email protected]",
"write your subject Here ", "Hi,This is the test message ");
MyMailMessage.IsBodyHtml = false;
NetworkCredential mailAuthentication = new NetworkCredential("[email protected]","xxxxxxxx");
SmtpClient mailClient = new SmtpClient("smtp.gmail.com", 587);
mailClient.EnableSsl = true;
mailClient.UseDefaultCredentials = false;
mailClient.Credentials = mailAuthentication;
mailClient.Send(MyMailMessage);
例外がメッセージ
Failure sending mail.
で
mailClient.Send(MyMailMessage);
で起こる私のGmailのユーザー名とパスワードを追加し、コードを実行した後、私はあまりにもが、ポート25を試してみました問題はまだそこにあります。
Visual Studioと.Net Frameworks以外に必要なことはありますか? 私はすべてのバージョンの.Net Frameworkを持っています。
私を助けてください!ここに見られるように
の詳細情報を与える内部例外はありますか? – hatchet
あなたのコードは私のために働いた。あなたのユーザー名とパスワードは正しいですか? –