我想知道是否有可以在Google Mail和Google表格之间进行互动的应用程序。
我自己解释一下: 我从在线表单收到许多电子邮件,所有电子邮件都与我要联系的客户的相关信息类似。我希望将所有表单都收到Google表格中,我可以像CRM一样管理。
感谢您的帮助。
此致
史蒂夫
答案 0 :(得分:0)
答案 1 :(得分:0)
如果数据格式正确,那么这是一个简单易用的脚本。
在Google工作表中,工具>脚本编辑器>
function sendEmails() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheetByName(' List');
var last = sheet.getLastRow();
for(var i=2;i<last+1;i++){}
var firstName = sheet.getRange(i, 1).getValue();
var email = sheet.getRange(i, 4).getValue(); // the second value is the column numbers , from left to right 1 to all
var message = 'Hola '+firstName+', message'; // Replace "Message" with your meesage and if you need to break lines use /n at the start of the new line
GmailApp.sendEmail(email, 'MPFC Schedule Assistant Bot',message);
}