上記のすべての回答を試しましたが、Office 365アカウントでこのエラーが発生します。安全性の低いアプリを許可すると、コードはGoogleアカウントとsmtp.gmail.comで正常に動作するようです。
私が試すことができる他の提案はありますか?
これが私が使っているコードです
int port = 587;
string host = "smtp.office365.com";
string username = "smtp.out@mail.com";
string password = "password";
string mailFrom = "noreply@mail.com";
string mailTo = "to@mail.com";
string mailTitle = "Testtitle";
string mailMessage = "Testmessage";
using (SmtpClient client = new SmtpClient())
{
MailAddress from = new MailAddress(mailFrom);
MailMessage message = new MailMessage
{
From = from
};
message.To.Add(mailTo);
message.Subject = mailTitle;
message.Body = mailMessage;
message.IsBodyHtml = true;
client.DeliveryMethod = SmtpDeliveryMethod.Network;
client.UseDefaultCredentials = false;
client.Host = host;
client.Port = port;
client.EnableSsl = true;
client.Credentials = new NetworkCredential
{
UserName = username,
Password = password
};
client.Send(message);
}
更新と解決方法:
SmtpクライアントをMailkitに変更することで問題を解決しました。System.Net.Mail Smtp Clientは、セキュリティ上の問題のため、Microsoftでの使用は推奨されておらず、代わりにMailKitを使用する必要があります。Mailkitを使用すると、問題(ライセンスの問題)の根本的な原因を見つけることが理解できる明確なエラーメッセージが表示されました。メールキットは、Nugetパッケージとしてダウンロードして入手できます。
詳細については、Smtpクライアントに関するドキュメントをご覧ください:https ://docs.microsoft.com/es-es/dotnet/api/system.net.mail.smtpclient?redirectedfrom=MSDN&view=netframework-4.7.2
MailKitでSmtpClientを実装する方法は次のとおりです
int port = 587;
string host = "smtp.office365.com";
string username = "smtp.out@mail.com";
string password = "password";
string mailFrom = "noreply@mail.com";
string mailTo = "mailto@mail.com";
string mailTitle = "Testtitle";
string mailMessage = "Testmessage";
var message = new MimeMessage();
message.From.Add(new MailboxAddress(mailFrom));
message.To.Add(new MailboxAddress(mailTo));
message.Subject = mailTitle;
message.Body = new TextPart("plain") { Text = mailMessage };
using (var client = new SmtpClient())
{
client.Connect(host , port, SecureSocketOptions.StartTls);
client.Authenticate(username, password);
client.Send(message);
client.Disconnect(true);
}