我正在使用Google Script创建一个脚本,以便在电子邮件正文中执行带有个性化文本的多个电子邮件发送(如姓名和地址)。 是否可以通过脚本发送带有导入帐户(在GMail中)的电子邮件?
由于
答案 0 :(得分:0)
您可以使用GmailApp的发送方式:
https://developers.google.com/apps-script/reference/gmail/gmail-app#sendemailrecipient-subject-body
sendEmail(收件人,主题,正文)
发送电子邮件。电子邮件的大小(包括标题)不得超过20KB。
putchar
此外,GmailApp.sendEmail也支持您的别名发送。
// The code below will send an email with the current date an time
var now = new Date();
GmailApp.sendEmail("mikemike@gmail.com", "current time", "The time is: " + now.toString());
支持使用选项设置sendEmail(recipient, subject, body, options)
,文档说明:
from:String,应发送电子邮件的地址,该地址必须是getAliases()返回的值之一