您如何使用 google Mailapp 回复电子邮件线程?
How do you reply to email thread with google Mailapp?
我正在使用 google Mailapp Api 从电子表格自动发送电子邮件。
我写了一个脚本来自动发送带有电子表格数据的电子邮件。
现在,我的脚本会发送一封新电子邮件。
有没有办法使用 google Mailapp api 发送(回复)电子邮件到现有的电子邮件线程?
您可以使用 GmailApp 服务的 reply() method 回复任何特定主题。
var thread = GmailApp.getThreadById(id);
thread.reply("Thank you!");
我正在使用 google Mailapp Api 从电子表格自动发送电子邮件。
我写了一个脚本来自动发送带有电子表格数据的电子邮件。 现在,我的脚本会发送一封新电子邮件。
有没有办法使用 google Mailapp api 发送(回复)电子邮件到现有的电子邮件线程?
您可以使用 GmailApp 服务的 reply() method 回复任何特定主题。
var thread = GmailApp.getThreadById(id);
thread.reply("Thank you!");