0
0
Google Sheetsspreadsheet~5 mins

Sending emails from Sheets in Google Sheets - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
AConditional Formatting
BData Validation
CGoogle Apps Script
DPivot Tables
What is the correct method to send an email in Google Apps Script?
AMailApp.sendEmail()
BEmail.send()
CsendMail()
DMail.sendEmail()
Which trigger runs a function when you edit a Google Sheet?
AonEdit(e)
BonOpen()
ConChange()
DonSubmit()
What minimum information is needed to send an email with MailApp.sendEmail()?
AMessage body only
BRecipient email only
CSubject and message body only
DRecipient email, subject, message body
Why should you test your email script with your own email first?
ATo save email credits
BTo avoid sending wrong emails to others
CTo speed up the script
DTo change the email format
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.