Created
January 11, 2022 00:15
-
-
Save twanlass/ce0d1a0ffee4aded231bb12841c647c4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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