我正在使用Google Apps脚本(http://script.google.com)为gmail编写自动回复工具。
In the docs,我发现没有任何功能可以发送Gmail 预设回复。 没有这样的功能吗?
如果没有,你会怎么处理?我想过用gmail发送电子邮件给自己:
To:example@gmail.com
From:example@gmail.com
Subject:This is a canned response ID1847
Hi
This is a test
向其添加标签mycannedresponse
,然后在代码中加载来自Apps脚本的邮件:
var threads = GmailApp.search("label:mycannedresponse ID1847");
if (threads.length != 1) {
// error: the canned response ID... is not unique
} else {
threads[0].getBody(...)
threads[0].getPlainBody(...)
}
有更多记录的方法吗?
答案 0 :(得分:1)
您是否看到过GAS的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());
https://developers.google.com/apps-script/reference/gmail/gmail-app#sendemailrecipient-subject-body