つくりかた
新しいプロジェクトを作る
function doPost(e) {
const { recipient, subject, body, ...options } = JSON.parse(e.postData.getDataAsString())
GmailApp.sendEmail(recipient, subject, body, options)
Logger.log('REMAINING_DAILY_QUOTA: ' + MailApp.getRemainingDailyQuota())
return ContentService.createTextOutput()
}
Gmail APIを有効にする
サービス からGmail APIを追加にしてください
ビクロイ
実行
上記のURLに置き換えてね
curl -d '{"recipient":"your_name@gmail.com","subject":"タイトル","body":"本文"}' https://script.google.com/macros/s/Deployment_ID/exec