作者:3051451abcd | 来源:互联网 | 2022-11-30 21:42
我们为客户建立了Google G Suite,在过去的几周中,我们发现Google Apps脚本未按预期处理MailApp.sendEmail()。它仅在新的G Suite帐户中发生,并且与预期的现有帐户功能完全相同的代码。
function testemail(){
MailApp.sendEmail("gordon@........", "TEST", "Hello world");
return;
}
我们使用的电子邮件地址是有效的电子邮件。
有任何想法吗?
1> Riyafa Abdul..:
尝试使用GmailApp.sendEmail()
// The code below will send an email with the current date and time.
var now = new Date();
GmailApp.sendEmail("mike@example.com", "current time", "The time is: " + now.toString());
现在是推荐的。