我可以使用发送网格 API 发送邮件 如何使用发送网格发送特定格式的邮件
请找到邮件格式的图像
将正文作为 HTML 传递并设置 IsBodyHtml = true。我使用 SendGrid 执行此操作。
public Task SendEmailAsync(string email, string subject, string htmlMessage)
{
var client = new SmtpClient(host, port)
{
Credentials = new NetworkCredential(userName, password),
EnableSsl = false
};
return client.SendMailAsync(
new MailMessage(from, email, subject, htmlMessage) { IsBodyHtml = true }
);
}