var response = UrlFetchApp.fetch("http://api.example.com/endpoint");
MailApp.sendEmail({
to: '[email protected]',
subject: 'Howdy',
htmlBody: 'Hello world'
});
Browser.msgBox('Hello world');
var response = UrlFetchApp.fetch("http://api.example.com/endpoint");
MailApp.sendEmail({
to: '[email protected]',
subject: 'Howdy',
htmlBody: 'Hello world'
});
Browser.msgBox('Hello world');