更改Google MailApp中的名称

时间:2017-09-04 03:34:31

标签: google-apps-script

我正在编辑谷歌应用脚​​本中其他人创建的代码。我正在尝试更改发送电子邮件的电子邮件中的名称。我查看了Google上的MailApp文档以及其他人在此处提到的内容,但它似乎并不匹配。第四个参数应该是一个可以指定名称的Object。所有部分周围都有花括号。我尝试过进行更改,但没有任何效果。这是代码:

MailApp.sendEmail({
    "to":studentEmailAddress,
    "cc":parentsEmailAddress,
    "subject":subject,
     "htmlBody":html.getContent()
});

以下是我在Google文档中找到的内容,但它并不匹配。

MailApp.sendEmail('mike@example.com', 'Attachment example', 'Two files are attached.', {
    name: 'Automatic Emailer Script',
    attachments: [file.getAs(MimeType.PDF), blob]
});

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

Google appscript会从脚本所有者的帐户发送电子邮件。如果您想更改发件人的电子邮件,则可以更改谁拥有该脚本,或在正确的帐户中创建一个新脚本。