google script send email

Solutions on MaxInterview for google script send email by the best coders in the world

showing results for - "google script send email"
Léandre
17 Jan 2017
1MailApp.sendEmail({
2    to: "recipient@example.com",
3    subject: "Logos",
4    htmlBody: "inline Google Logo<img src='cid:googleLogo'> images! <br>" +
5              "inline YouTube Logo <img src='cid:youtubeLogo'>",
6    inlineImages:
7      {
8        googleLogo: googleLogoBlob,
9        youtubeLogo: youtubeLogoBlob
10      }
11  });