如何使用 Google Apps 脚本在电子邮件主题中使用表情符号?

How to use Emoji in email subject using Google Apps Script?

我正在尝试使用 Google Apps 脚本发送电子邮件。

// try 1
const subject = 'Hello World ';

// try 2
const subject = 'Hello World ' + String.fromCodePoint('0x1F600');

GmailApp.sendEmail(
  'abc@gmail.com', subject, '',
  {htmlBody: '<p>Hello World </p>', name: 'ABC'}
);

当我使用 ⭐ 时,它在主题和 HTML 正文中都能完美运行。但是,当我使用 时,它在主题和 HTML 正文中显示带有问号的黑色菱形。

我也检查了 但它只展示了如何在电子邮件正文中使用它,而不是主题。

我已经尝试使用 MailApp 并且它有效,但我不想将它用于 一些原因。

知道如何解决这个问题吗?

我相信你的目标如下。

  • 您想使用 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 数据发送。
    • 当包含emoji的值转成base64数据时,在我的测试中,似乎需要将值转成base64作为UFT-8。
    • 我确认此解决方法也可用于 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"
      );
    

参考文献: