✉️
Google Apps Scriptでメールを送信する
GmailクラスのsendEmailメソッドを使った基本のコード。
function sendEmail(){
const address = "メールアドレス"
const subject = "メール件名"
const body = "メール本文"
GmailApp.sendEmail(address,subject,body)
}
送信先が複数ある場合は、ダブルクォーテーションの間にメールアドレスをカンマで区切って設定します。
const address = "メールアドレス1,メールアドレス2,メールアドレス3"
Discussion