Google Apps脚本 - MailApp

时间:2017-07-11 14:30:26

标签: google-apps-script

我想使用Google Apps脚本发送包含replyTo和附件的电子邮件,但我只找到了这两种方法,这些方法可以单独执行。

sendEmail(recipient, subject, body, options)

sendEmail(to, replyTo, subject, body)   

我能做到的另一种方法是什么?

1 个答案:

答案 0 :(得分:4)

你最好的选择是使用

的第一种方法
sendEmail(recipient, subject, body, options)

此方法可以获取所有参数。您可以在选项部分中传递所有参数。

它看起来像这样。

// Send an email with two attachments:
//   a file from Google Drive (as a PDF) and an HTML file.
var file = DriveApp.getFileById('12345mnopqrstuvwxyz');
var blob = Utilities.newBlob('HTML content here',
                             'text/html',
                             'my_email.html');

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

这是文档的截图

Google Documentation Image

Google documentation here