适用于Gmail的邮件合并工具,可以从电子邮件地址更改

时间:2012-12-18 01:38:25

标签: google-apps-script

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

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

2 个答案:

答案 0 :(得分:0)

作为开发人员,您可以编写脚本代码,以使用Google帐户中可用的任何别名作为“发件人”地址。以下是a Google Apps Script documentation reference的示例(并在下面复制):

// 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]});

答案 1 :(得分:0)

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

中找到