我想在我的谷歌应用脚本中使用 mandrill 电子邮件发送 API。在谷歌脚本中,我必须使用 JSON 代码,但我不知道如何使用它。我是谷歌应用脚本的新手。
var m = new mandrill.Mandrill('XXXXXXXXXXX');
var from_email = "user4@gmail.com";
var to = '[
{
"email": "recipient.email@example.com",
"name": "Recipient Name"
}
],';
// create a variable for the API call parameters
var params = {
"message": {
"from_email":from_email,
"to":[{"email":to}],
"subject": "Sending a text email from the Mandrill API",
"text": "I'm learning the Mandrill API at Codecademy, it's very difficult."
}
};
function sendTheMail() {
// Send the email!
alert('this is a mail script');
m.messages.send(params, function(res) {
log(res);
}, function(err) {
log(err);
});
}
我不知道如何在 Google Apps 脚本中使用此代码。