asp.net core 3.0 でメールを送ってみる
MailKit
SmtpClient Classは使えなくなっている
MailKit(https://github.com/jstedfast/MailKit)を使えばいいらしいんだが、検索してみると
ここがヒット
https://showylee.qrunch.io/entries/7fMcZM53WUZFTTvd
ここのサンプルコードでほぼほぼ動作する
あ、私がコピペした段階では多少問題ありでしたが
少し手を入れました
'''
public interface IMailSendLogic
{
void SendMailAsync(string to, string from, string subject, string text);
}
public class MailSendLogic : IMailSendLogic
{
private string SmtpHost = "";
private int SmtpPort = 587;
private string User = "";
private string Pass = "";
public async void SendMailAsync(string to, string from, string subject, string text)
{
var message = new MimeKit.MimeMessage();
// 送り元情報
message.From.Add(new MimeKit.MailboxAddress("<送信者名>", from));
// 宛先情報
message.To.Add(new MimeKit.MailboxAddress("<宛名>", to));
// 表題
message.Subject = subject;
// 内容
var textPart = new MimeKit.TextPart(MimeKit.Text.TextFormat.Plain);
textPart.Text = text;
message.Body = textPart;
using (var client = new MailKit.Net.Smtp.SmtpClient())
{
try
{
// SMTPサーバに接続
await client.ConnectAsync(SmtpHost, SmtpPort);
Debug.WriteLine("接続完了");
// SMTPサーバ認証(あれば)
await client.AuthenticateAsync(User, Pass);
// 送信
await client.SendAsync(message);
// 切断
await client.DisconnectAsync(true);
}
catch (Exception e)
{
Debug.WriteLine("{0} Exception caught.", e);
}
}
}
}
'''
nugetから取得します
core 3.0で確認しました。
Githubにも上げました
Author And Source
この問題について(asp.net core 3.0 でメールを送ってみる), 我々は、より多くの情報をここで見つけました https://qiita.com/ueshiman/items/283206ddd6f22ea815ef著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .