如何在获得许可后通过电子邮件对用户进行通知

时间:2017-06-07 14:42:11

标签: javascript google-analytics-api

我如何通过电子邮件对用户进行通知(与Google应用程序相同),我授予了权限。 我用这个method。 有我的要求:

var request = gapi.client.analytics.management.accountUserLinks.insert(
        {
          'accountId': accountId,
          'resource': {
            'permissions': {
              'local': [
                'EDIT',
                'COLLABORATE',
                'READ_AND_ANALYZE'
              ]
            },
            'userRef': {
              'email': email
            }
          }
        });

感谢。

1 个答案:

答案 0 :(得分:0)

MailApp.sendEmail(email,
    "notifications@example.com",
    "Permission granted",
    "You have new permissions granted: Edit, Collaborate, Read&Analyse");

看:How to send structured email markup using Gmail API and Javascript?