Recall & Review
beginner
What is the main Google Sheets feature used to send emails automatically?
Google Sheets uses Google Apps Script to send emails automatically based on sheet data.
Click to reveal answer
beginner
Which function in Google Apps Script sends an email?
The function
MailApp.sendEmail() is used to send emails from Google Sheets scripts.Click to reveal answer
intermediate
How do you trigger an email to send when a sheet is edited?
You create an onEdit(e) trigger function in Apps Script that runs when the sheet changes, then use
MailApp.sendEmail() inside it.Click to reveal answer
beginner
What information do you need to provide to
MailApp.sendEmail() to send an email?You need to provide the recipient's email address, subject line, and message body at minimum.
Click to reveal answer
beginner
Why is it important to test your email script with your own email first?
Testing ensures your script sends emails correctly and avoids spamming others by mistake.
Click to reveal answer
Which Google Sheets feature allows you to write code to send emails?
✗ Incorrect
Google Apps Script lets you write code to automate tasks like sending emails.
What is the correct method to send an email in Google Apps Script?
✗ Incorrect
The correct method is MailApp.sendEmail() to send emails from scripts.
Which trigger runs a function when you edit a Google Sheet?
✗ Incorrect
The onEdit(e) trigger runs when a user edits the sheet.
What minimum information is needed to send an email with MailApp.sendEmail()?
✗ Incorrect
You must provide recipient email, subject, and message body to send an email.
Why should you test your email script with your own email first?
✗ Incorrect
Testing prevents accidental emails to others and ensures the script works.
Explain how you can send an email automatically when a Google Sheet is edited.
Think about what happens when you change the sheet and how the script reacts.
You got /4 concepts.
List the key parts needed to send an email from a Google Sheets script.
What does an email always need to have?
You got /4 concepts.