Skip to content

Instantly share code, notes, and snippets.

@abelcallejo
Last active August 14, 2020 10:34
Show Gist options
  • Save abelcallejo/98aadf20a4634f20c240b878b720f574 to your computer and use it in GitHub Desktop.
Save abelcallejo/98aadf20a4634f20c240b878b720f574 to your computer and use it in GitHub Desktop.
Apps Script cheatsheet

Apps Script cheatsheet

Requesting are resource

var response = UrlFetchApp.fetch("http://api.example.com/endpoint");

Sending an email

MailApp.sendEmail({
  to: '[email protected]',
  subject: 'Howdy',
  htmlBody: 'Hello world'
});

Alert popup

Browser.msgBox('Hello world');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment