March 2016
Beginner to intermediate
232 pages
4h 29m
English
The sendEmail function is able to send e-mails with prefixed messages. Remember to replace e-mail ID and message text. This service is mainly used to send e-mails with limited methods (only sendEmail and getRemainingDailyQuota), and it cannot access your Gmail account. You can use the GmailApp class for more methods:
function sendEmail(){
var to = "[[reciever email id]]";
var message = "[[message]]\n";
MailApp.sendEmail(to, "Chapter 3", message);
}Read now
Unlock full access