私はSendGridの助けを借りて電子メールを送信しています。以下はそのコードです。送信グリッド経由で安全なメールを送信するには?
var client = new SendGridClient(apiKey);
EmailAddress from = new
EmailAddress("[email protected]", "Ashutosh");
List<EmailAddress> tos = new List<EmailAddress>
{
new EmailAddress("[email protected]",
"Ashutosh"),
};
StringBuilder emailBodyContent = new StringBuilder();
var textContent = "Hi, ";
emailBodyContent.AppendFormat("<p>Hi, </p>");
emailBodyContent.AppendFormat("<p>This is your email.</p>");
var emailSubject = "Attachment names are not unique";
msg = MailHelper.CreateSingleEmailToMultipleRecipients(from,
tos, emailSubject, textContent, emailBodyContent.ToString());
var response = await client.SendEmailAsync(msg);
安全なメールを送信します。私は下のリンク
https://sendgrid.com/docs/Classroom/Basics/Email_Infrastructure/smtp_ports.html
を通過しかし、私はコードをポート587を設定したり、送信グリッドのためのセキュアな電子メールの設定を有効にする方法を理解していません。
正しいhttpsプロトコル – ABB
を使用しています。 – evilSnobu