0
votes

I have a Google Apps Script trigger that runs every Tuesday at a certain time.

Google allows for notifications if the trigger fails for some reason, is there any way that I can receive some sort of email/notification if the trigger runs successfully?

1

1 Answers

1
votes

You can add a MailApp.sendMail() call inside the function that sends an email notification to you when the trigger is successful.

Alternatively, you can use the console.log() statement inside the function and the activity will be recorded in the StackDriver logs.