我如何通过电子邮件对用户进行通知(与Google应用程序相同),我授予了权限。 我用这个method。 有我的要求:
var request = gapi.client.analytics.management.accountUserLinks.insert(
{
'accountId': accountId,
'resource': {
'permissions': {
'local': [
'EDIT',
'COLLABORATE',
'READ_AND_ANALYZE'
]
},
'userRef': {
'email': email
}
}
});
感谢。
答案 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?