gpt4 book ai didi

c# - 为什么 Gmail API 不能从 C# 发送 HTML 格式的电子邮件?

转载 作者:太空宇宙 更新时间:2023-11-03 12:12:22 25 4
gpt4 key购买 nike

我正在尝试使用 Gmail API 从 C# 发送 HTML 电子邮件。电子邮件已发送,但 Gmail 拒绝承认它应该是一封 HTML 电子邮件。

这是我使用的代码:

var template = @"from: {1}{4}to: {0}{4}subject: {2}{4}MIME-Version: 1.0{4}Content-Type: text/html; charset=UTF-8{4}Content-Transfer-Encoding: base64{4}{4}{3}";
body = HttpUtility.HtmlEncode(body);
var result = string.Format(template, to, from, subject, body, "\r\n");
result = Convert.ToBase64String(Encoding.UTF8.GetBytes(result));

var gMessage = new Message()
{
Raw = result
};
service.Users.Messages.Send(gMessage, "me").Execute();

这是编码为 base64 之前的结果字符串的样子:

from: test@test.com
to: test@test2.com
subject: testSubject
MIME-Version: 1.0
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: base64

<html><head>

<title>Push Email</title>

</head>
<body> blah

</body></html>

(该应用程序实际上使用了真实的电子邮件地址,出于隐私考虑,我在上面的示例中将其替换为“test@...”。)

我尝试了 header 排列、内容传输编码(base64、7 位、8 位等)、内容类型字符集(ascii、utf8 等)的所有可能组合,我尝试使用 UrlEncode 而不是 HtmlEncode,但电子邮件正文要么只是显示为未呈现的 HTML,要么显示为编码的 url 字符串(取决于我是使用 html 编码还是 url 编码以及我指定的内容传输编码)。

重点是,邮件正在运行,正在发送正文,但它只是固执地拒绝呈现 HTML。我要么得到这个:

<html><head> <title>Push Email</title> </head> <body> blah </body></html>

或者这个:

%3chtml%3e%3chead%3e%0d%0a%0d%0a%3ctitle%3ePush+Email%3c%2ftitle%3e+++%0d%0a+%0d%0a%3c%2fhead%3e++++%0d%0a%3cbody%3e+blah++%0d%0a++++%0d%0a%3c%2fbody%3e%3c%2fhtml%3e

或者这个:

&lt;html&gt;&lt;head&gt; &lt;title&gt;Push Email&lt;/title&gt; &lt;/head&gt; &lt;body&gt; blah &lt;/body&gt;&lt;/html&gt;

我只想发送一封 SMTP 电子邮件,但可能出于安全考虑,如果您对该帐户有 2 因素身份验证(我已经并且不打算禁用它),Google 将不允许这样做。

此外,我只是将 MIME 消息构建为常规字符串。这可能与它有关,但我不知道。我不打算使用任何第三方 nuget 包/库,例如 MimeKit。我只想要一个 C# 解决方案。

最后,我需要能够发送 HTML 电子邮件,以便我可以根据我的应用业务逻辑发送链接。

有什么建议吗?

最佳答案

我终于明白了。首先,邮件正文不能转义,但整个 MIME 字符串应该转义。但是,如前所述,如果我不对正文进行编码,API 会提示字节字符串无效。

问题是生成的 base64 字符串应该以 URL 安全的方式编码。 Gmail API guide 上的 python 代码使用一种名为 urlsafe_b64encode 的方法,它不同于普通的 base 64 方法,因为生成的字符串是 URL 安全的。

我以为我可以使用 HTML 或 URL 编码在 C# 中复制它,然后使用标准的 Convert.ToBase64String 方法将 MIME 字符串转换为 base64,但我错了。搜索 MSDN 网站后,我终于找到了 HttpServerUtility.UrlTokenEncode方法的作用与 urlsafe_b64encode python 方法的作用相同,即以 URL 安全变体对字符串进行编码,并将其转换为 base64。因此最终代码变为:

// Template for the MIME message string (with text/html content type)
var template = @"from: {1}{4}to: {0}{4}subject: {2}{4}MIME-Version: 1.0{4}Content-Type: text/html; charset=UTF-8{4}Content-Transfer-Encoding: base64{4}{4}{3}";
// Fill in MIME message fields
var result = string.Format(template, to, from, subject, body, "\r\n");
// Get the bytes from the string and convert it to a URL safe base64 string
result = HttpServerUtility.UrlTokenEncode(Encoding.UTF8.GetBytes(result));

// Instantiate a Gmail API message and assign it the encoded MIME message
var gMessage = new Message()
{
Raw = result
};
// Use the Gmail API Service to send the email
service.Users.Messages.Send(gMessage, "me").Execute();

关于c# - 为什么 Gmail API 不能从 C# 发送 HTML 格式的电子邮件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51485440/

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