【问题标题】:How to use Emoji in email subject using Google Apps Script?如何使用 Google Apps 脚本在电子邮件主题中使用表情符号?
【发布时间】:2021-05-10 15:29:10
【问题描述】:

我正在尝试使用 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 正文中显示带有问号的黑色菱形。

我还检查了How to insert an emoji into an email sent with GmailApp?,但它只展示了如何在电子邮件正文中使用它,而不是主题。

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

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

【问题讨论】:

  • 从您更新的问题中,我了解到您想知道在不使用MailApp.sendEmail 的情况下使用GmailApp.sendEmail 实现目标的方法。至此,我重新打开了您的问题。
  • 嗨@Tanaike,您知道如何实现目标吗?
  • 感谢您的回复。关于The emoji in the body displays successfully.,能否请教一下实现的方法?因为当我测试您的脚本时,无法正确显示电子邮件正文中的表情符号。对此我深表歉意。
  • 例如,当HTML正文不包含表情符号,而您只想在使用GmailApp.sendEmail的主题中包含表情符号时,我认为这是可以实现的。这个怎么样?

标签: javascript google-apps-script google-sheets gmail emoji


【解决方案1】:

我相信你的目标如下。

  • 您想使用 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"
      );
    

参考资料:

【讨论】:

  • 嗨@Tanaike。伙计,非常感谢你。它完美无缺。我只想再问一件事。使用 Gmail API 时我们可以发送多少封电子邮件是否有任何配额?我知道使用 GmailApp/MailApp,我们每天可以发送大约 1000 封电子邮件。
  • @Ravgeet Dhillon 感谢您的回复。我很高兴你的问题得到了解决。关于你的附加问题,这个官方文档有用吗? developers.google.com/gmail/api/reference/quota
  • =?UTF_B**?= 这是密码吗?你是怎么找到的?
  • @TheMaster 在那个时候,我可能检查过this。在现阶段,我认为你也可以使用this。在这种情况下,Hello World ?⭐ 将转换为 =?UTF-8?B?SGVsbG8gV29ybGQg8J+Yg+KtkA==?=。当此编码值在 Gmail 中用作主题并发送时,您可以看到解码后的值。
猜你喜欢
  • 1970-01-01
  • 2012-07-25
  • 2016-05-05
  • 1970-01-01
  • 1970-01-01
  • 2018-03-21
  • 2022-11-21
  • 1970-01-01
相关资源
最近更新 更多