무료로 구글 폼 제출 완료하면 자동으로 이메일 보내기
2022. 10. 10. 07:23
구글 폼
Class MailApp에 대해 알아보자. var emailQuotaRemaining = MailApp.getRemainingDailyQuota(); Logger.log("보낼 수 있는 이메일 양: " + emailQuotaRemaining); 당일 전송 가능한 이메일을 양을 체크하는 두 줄 코드. 지메일 클래스 메일앱은 이런 식으로 쓰라고 되어 있다. 하나씩 설명하자면 MailApp.sendEmail({ to: "recipient@example.com", subject: "Logos", htmlBody: "inline Google Logo images! " + "inline YouTube Logo ", inlineImages: { googleLogo: googleLogoBlob, youtubeLogo:..