Skip to content

Instantly share code, notes, and snippets.

@twanlass
Created January 11, 2022 00:15
Show Gist options
  • Select an option

  • Save twanlass/ce0d1a0ffee4aded231bb12841c647c4 to your computer and use it in GitHub Desktop.

Select an option

Save twanlass/ce0d1a0ffee4aded231bb12841c647c4 to your computer and use it in GitHub Desktop.
function sendGoalTrackerEmail() {
var emailAddress = '[email protected]';
var subject = 'A Subject Line';
var message = 'Your message';
MailApp.sendEmail(emailAddress, subject, message, {
htmlBody: message
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment