GmailのSMTPを介してメールを送信するための私のコード:
SmtpClient client = new SmtpClient("smtp.gmail.com", 587);
client.EnableSsl = true;
client.UseDefaultCredentials = false;
client.Credentials = new NetworkCredential("my_user_name", "my_password");
MailMessage message =
new MailMessage(new MailAddress("from...@gmail.com"), new MailAddress("to...@gmail.com"));
message.Body = "body";
message.Subject = "subject";
client.Send(message);
このコードはローカルマシンで機能し、Azureで「Webサイト」として公開すると機能します。
しかし、 「クラウドサービス」で公開すると、次の例外が発生します。
System.Net.Mail.SmtpException: The SMTP server requires a secure connection
or the client was not authenticated. The server response was:
5.5.1 Authentication Required. Learn more at
この効果をもたらす可能性のある「クラウドサービス」とWindowsAzureの「Webサイト」との違いはありますか?
ありがとう!