Slide 12
Slide 12 text
PAGE
# MOONGIFT / 50
DAY 2019/02/14 12
const property = PropertiesService.getScriptProperties();
const body = {
"personalizations": [{"to": [{ email }], subject, }],
"from": {
"email": from,
"name" : from_name
},
"content": [{"type": "text/plain", "value": body_text}]
};
if (body_html) {
body.personalizations[0].content.push({
"type": "text/html",
"value": body_html
});
}
const payload = JSON.stringify(body);
const res = UrlFetchApp.fetch('https://api.sendgrid.com/v3/mail/send', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${property.getProperty('SENDGRID_API_KEY')}`},
payload: payload
});
return res.getResponseCode() === 202;
THOJHIUUI