我相信你的目标如下。
- 您想使用 Google Apps 脚本在主题中发送包含
・ 等表情符号的 gmail。
- 您想知道在不使用
MailApp.sendEmail 的情况下使用GmailApp.sendEmail 实现目标的方法。
- 但是,当使用
GmailApp.sendEmail 时,主题可以包含表情符号。但是表情符号不能在电子邮件正文中使用。所以我建议在这种情况下使用 Gmail API。对于我的as other direction, in your goal, can you use Gmail API? 问题,您回答了Yes, Gmail API will work.。所以我知道您的目标可以使用 Gmail API 来实现。
修改点:
- 在这种情况下,Gmail API 与高级 Google 服务一起使用。
- 而且,当您想在电子邮件主题中包含
・ 之类的表情符号时,主题将作为 base64 数据发送。
- 当包含表情符号的值转换为base64数据时,在我的测试中,似乎需要将该值转换为UFT-8的base64。
- 我确认此解决方法也可用于
GmailApp.sendEmail。
当以上几点反映到脚本中时,变成如下。
示例脚本:
在您使用此脚本之前,please enable Gmail API at Advanced Google services。并且,请在函数main()中设置变量并运行函数main()。
function convert(toEmail, fromEmail, name, subject, textBody, htmlBody) {
const boundary = "boundaryboundary";
const mailData = [
`MIME-Version: 1.0`,
`To: ${toEmail}`,
`From: "${name}" <${fromEmail}>`,
`Subject: =?UTF-8?B?${Utilities.base64Encode(subject, Utilities.Charset.UTF_8)}?=`,
`Content-Type: multipart/alternative; boundary=${boundary}`,
``,
`--${boundary}`,
`Content-Type: text/plain; charset=UTF-8`,
``,
textBody,
``,
`--${boundary}`,
`Content-Type: text/html; charset=UTF-8`,
`Content-Transfer-Encoding: base64`,
``,
Utilities.base64Encode(htmlBody, Utilities.Charset.UTF_8),
``,
`--${boundary}--`,
].join("\r\n");
return Utilities.base64EncodeWebSafe(mailData);
}
// Please run this function.
function main() {
const toEmail = "###"; // Please set the email for `to`.
const fromEmail = "###"; // Please set the email for `from`.
const name = "ABC";
const subject = "Hello World ・";
const textBody = "sample text body ・";
const htmlBody = "<p>Hello World ・</p>";
var raw = convert(toEmail, fromEmail, name, subject, textBody, htmlBody);
Gmail.Users.Messages.send({raw: raw}, "me");
}
注意:
-
当您想使用带有GmailApp.sendEmail 主题的表情符号时,您还可以使用以下脚本。但是,在这种情况下,在我的环境中,当表情符号包含在文本正文和 HTML 正文中时,无法看到表情符号。所以请注意这一点。
const emailAddress = = "###"; // Please set the email for `to`.
const subject = 'Hello World ・';
GmailApp.sendEmail(
emailAddress,
`=?UTF-8?B?${Utilities.base64Encode(Utilities.newBlob(subject).getBytes())}?=`,
"sample text body"
);
参考资料: