使用gmail API设置用户签名 - 如何使用

时间:2016-10-21 12:09:02

标签: google-apps-script gmail-api

是否已有人使用gmail API为使用应用脚本的用户创建签名? 我看过这个链接:“https://developers.google.com/gmail/api/v1/reference/users/settings/sendAs” 但我不知道如何使用它。

感谢您的回复 JPA

1 个答案:

答案 0 :(得分:3)

使用Gmail高级服务即可: https://developers.google.com/apps-script/advanced/gmail

function emptyto(element){
    return element.value == '' ? element.style.backgroundColor = "#ccc" : element.val()
}