gpt4 book ai didi

html - 使用 AlternateView 生成 HTML 电子邮件的正确语法

转载 作者:搜寻专家 更新时间:2023-10-31 23:27:32 24 4
gpt4 key购买 nike

我正在尝试使用 AlternateView 来满足 HTML 和文本客户端的需求。我宁愿使用 HTML,只在必要时回退到文本。我开始重新编码一个旧的控制台应用程序来执行此操作,但我的代码中仍然有回车符和换行符作为“/r/n”,我的问题是试图弄清楚如何以及在何处使用 Environment.Newline 而不是这些?

现在,正在从 Web 表单调用控制台应用程序。我在调试时遇到了一些困难,最终计划是为此创建一个 WCF 服务。

我认为我遇到的困难是确定 AlternateView 实际为我做了什么,而不是我必须在文本和 HTML 版本中分别显式编码多少电子邮件正文。具体来说,我在以下代码的最后一个 else block 中仍然有旧的回车符和换行符,我正在尝试找出一种更优雅的方法来执行此操作。

    // args[0] - Subject
// args[1] - Message (uses all Environment.Newlines)
// args[2] - RfpID

static void Main(string[] args)
{
string subject = args[0];
string message = args[1];

// Get programatic access to the email information stored in the web.config file
string emailHost = WebConfigurationManager.AppSettings["EmailHost"];
string fromAddress = WebConfigurationManager.AppSettings["FromEmailAddress"];

SmtpClient client = new SmtpClient(emailHost);

int count = 0;
using (SqlDataReader dr = MailerDALC.GetAddressesByRFP(Convert.ToInt32(args[2])))
{
string hash;
while (dr.Read())
{
MailMessage mailMessage = new MailMessage();

mailMessage.IsBodyHtml = true;
mailMessage.SubjectEncoding = System.Text.Encoding.UTF8;
mailMessage.BodyEncoding = System.Text.Encoding.UTF8;

using (AlternateView textPart =
AlternateView.CreateAlternateViewFromString(mailMessage.Body,
System.Text.Encoding.UTF8, "text/plain"))
{
textPart.TransferEncoding =
System.Net.Mime.TransferEncoding.QuotedPrintable;
mailMessage.AlternateViews.Add(textPart);
}

using (AlternateView htmlPart =
AlternateView.CreateAlternateViewFromString(mailMessage.Body,
System.Text.Encoding.UTF8, "text/html"))
{
htmlPart.TransferEncoding =
System.Net.Mime.TransferEncoding.QuotedPrintable;
mailMessage.AlternateViews.Add(htmlPart);
}

mailMessage.Priority = MailPriority.High;

mailMessage.From = new MailAddress(fromAddress);
mailMessage.Subject = subject;

mailMessage.To.Add(new MailAddress(dr["EmailAddress"].ToString()));

if ((bool)dr["SecondaryNotify"])
mailMessage.Bcc.Add(new MailAddress(dr["SecondaryEmail"].ToString()));

// Send email in batches of 100 with a 30 second pause between each batch
if ((count >= 100) && (count % 100 == 0))
Thread.Sleep(30000);

// Check well-formedness of each email adddress
if (!IsWellformedEmailAddr(mailMessage.To.ToString()))
{
LogError(dr[1].ToString()
+ " is a malformed email address.
Message was not sent to this subscriber "
+ dr[1].ToString() + ".", "");
continue;
}
else
{
mailMessage.Body = message;

hash = dr["Hash"].ToString();
mailMessage.Body +=
"\n\nIf you no longer wish to receive notifications, you can "
+ "unsubscribe and your details will be removed from our system:\n"
+ "http://example.com/apps/vendorreg/unsubscribe.aspx?unsub="
+ hash + "\n\n";

mailMessage.Body += "My Website Policies:\n"
+ "http://example.com/doc/help/policies/help_website_policies";

client.Send(mailMessage.From.Address, mailMessage.To[0].ToString(),
mailMessage.Subject, mailMessage.Body);

count++;
}
hash = "";
}
}
}

最佳答案

更新 - 2019 年 9 月 30 日:微软更新了 documentation为此。

如我所料,我必须明确提供邮件正文的纯文本和 HTML 版本。 MSDN 文档不是很有帮助。下面是我为实现此功能而创建的代码片段:

// args[0] - Subject
// args[1] - Plain text body content
// args[2] - HTML body content
// args[3] - RfpID

textMessage += "\n\nIf you no longer wish to receive notifications, you can "
+ "unsubscribe and your details will be removed from our system:\n"
+ "http://example.com/apps/vendorreg/unsubscribe.aspx?unsub=" + hash + "\n\n"
+ "Example Website Policies:\n"
+ "http://example.com/doc/help/policies/help_website_policies";

// Important: Mime standard dictates that text version must come first
using (AlternateView textPart =
AlternateView.CreateAlternateViewFromString(textMessage, null, "text/plain"))
{
textPart.TransferEncoding = System.Net.Mime.TransferEncoding.QuotedPrintable;
mailMessage.AlternateViews.Add(textPart);
mailMessage.IsBodyHtml = false;
mailMessage.Body = textMessage;
}

htmlMessage += Environment.NewLine + Environment.NewLine
+ "If you no longer wish to receive notifications, you can "
+ "unsubscribe and your details will be removed from our system:"
+ Environment.NewLine
+ "http://example.com/apps/vendorreg/unsubscribe.aspx?unsub=" + hash
+ Environment.NewLine + Environment.NewLine
+ "Example.com Website Policies:"
+ Environment.NewLine
+ "http://example.com/doc/help/policies/help_website_policies";

using (AlternateView htmlPart =
AlternateView.CreateAlternateViewFromString(htmlMessage,
System.Text.Encoding.UTF8, "text/html"))
{
htmlPart.TransferEncoding = System.Net.Mime.TransferEncoding.QuotedPrintable;
mailMessage.AlternateViews.Add(htmlPart);
mailMessage.IsBodyHtml = true;
mailMessage.Body = htmlMessage;
}

// Send email

关于html - 使用 AlternateView 生成 HTML 电子邮件的正确语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27391070/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com