0

我知道有一些 Gmail 邮件合并工具。是否有任何允许我在 gmail 中使用注册的“发送自”地址?当我在这里的两个脚本中设置不同的发送电子邮件时,它仍然从我的默认 gmail 帐户发送。

http://www.labnol.org/internet/personalized-mail-merge-in-gmail/20981/

4

2 回答 2

0

作为开发人员,您可以编写脚本以使用 Google 帐户中可用的任何别名作为“发件人”地址。这是带有示例的 Google Apps 脚本文档参考(并在下面复制):

// The code below logs the aliases for this Gmail account and sends an email
// as the first one.
var aliases = GmailApp.getAliases();
Logger.log(aliases);
GmailApp.sendEmail(
    "recipient@example.com", "subject", "body", {from: aliases[0]});
于 2012-12-18T05:26:05.603 回答
0

您可以将此应用程序视为邮件合并工具 http://www.thexs.ca/xsmerge 它可在 Chrome 网上商店(免费)中获得

于 2012-12-19T03:04:00.973 回答