Skip to content

Instantly share code, notes, and snippets.

@fischerbach
Last active March 19, 2021 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fischerbach/2db069c082651418ebf76ed48b6308ac to your computer and use it in GitHub Desktop.
Save fischerbach/2db069c082651418ebf76ed48b6308ac to your computer and use it in GitHub Desktop.
function sendEmail() {
var emailAddress = "bstammr_c862k@fuluj.com"; //Change to your email or temporary mail (https://tempmail.ninja/)
var message = "This is test.";
var subject = 'Sending emails from a Spreadsheet';
MailApp.sendEmail(emailAddress, subject, message);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment