【问题标题】:Interaction between google mail and Google Sheets谷歌邮件和谷歌表格之间的交互
【发布时间】:2015-07-21 14:41:06
【问题描述】:

我想知道是否有可以允许 Google Mail 和 Google Sheet 之间交互的应用程序。

我自己解释一下: 我从在线表格中收到许多电子邮件,所有电子邮件都与我必须联系的客户的信息相似。我想将所有表单接收到我可以像 CRM 一样管理的 Google 表格中。

感谢您的帮助。

问候,

史蒂夫

【问题讨论】:

    标签: email google-apps google-spreadsheet-api


    【解决方案1】:

    有一些服务可以提供帮助,您也可以使用自定义脚本。它还可能取决于您用于联系表单的平台类型。

    IFTTT | Zapier | Script

    【讨论】:

      【解决方案2】:

      如果数据格式正确,这是一个简单的脚本来执行此操作。

      在谷歌表格中,工具>脚本编辑器>

          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);
      
      
      
      
      }
      

      【讨论】:

        猜你喜欢
        • 2015-11-23
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2017-06-19
        • 1970-01-01
        相关资源
        最近更新 更多