前提・実現したいこと
Googleフォームで申請した内容を基に承認者へメールをします。
承認者はメール内容を確認し、承認URLをクリックします。
申請者へ承認完了メールが届きます。
承認者は承認したタイミングで内容がブラウザに表示されます。
デプロイの設定・トリガーの設定も済みです。
申請者がGoogleフォームで申請し、承認者へメールは飛びましたが
承認した後に申請者へメールが送られタイミングで下記エラーが出ます。
「Exception: 無効なメール: Thu Aug 05 2021 18:50:20 GMT+0900 (日本標準時)(行 65、ファイル「コード」)」
いろいろ調べましたが改善ができません。
ご協力お願いします。
function sendMessage(e) {
const [time,email,date,kanziname,romajiname,cpname,secname,staffno,tel,usermail,dami,contents,authority,reason,note,language,code,authorizername,authorizermail] = e.values;
const row = e.range.getRow();
const sheet = e.range.getSheet();
sheet.getRange(row, 22).setValue('確認中');
const recipient = authorizermail; //承認者のメールアドレス
const subject = 'MindsユーザーID申請のお知らせ';
let body = '';
body += 'ユーザーID申請がありました。\n\n';
body += ・申請日: ${date}\n
;
---複数のbody省略---
body += ・申請者: ${email}\n\n\n
;
body += '承認する場合は、以下URLをクリックしてください\n';
body += 'https://script.google.com/a/macros/####/s/AKfycbxPUTB-HMCNeEMwB8mYbr2YYGCWVfns5L-AuEOTDe0bcqW0bKZoGVW7ypeGVsQ5hlLerw/exec'; //スプレッドシートのURL
body += ?row=${row}
;
GmailApp.sendEmail(recipient, subject, body);
}
function doGet(e) {
const row = e.parameter.row;
const sheet = SpreadsheetApp.getActiveSheet();
const values = sheet.getRange(row, 1, 1, 22).getValues()[0];
const [time,email,date,kanziname,romajiname,cpname,secname,staffno,tel,usermail,dami,contents,authority,reason,note,language,code,authorizername,authorizermail] = values;
sheet.getRange(row, 22).setValue('承認');
const subject = 'ユーザーID申請承認のお知らせ';
let body = '';
body += '以下のMindsユーザーID管理職申請が承認されました。\n\n';
body += ・申請日: ${date}\n
;
---複数のbody省略---
body += ・特記事項: ${note}\n
;
GmailApp.sendEmail(email, subject, body);//申請者にメールを送る ⇒⇒ここが65行目
let html = '';
html += '<h1>MindsユーザーID申請のお知らせ</h1>';
html += '<p>あなたは以下のMindsユーザーID申請を承認しました</p>';
html += '<ul>';
html += <li>申請日: ${date}</li>
;
html += <li>利用者氏名漢字: ${kanziname}</li>
;
---複数のテキスト---
html += <li>特記事項: ${note}</li>
;
html += '</ul>';
return HtmlService.createHtmlOutput(html);
}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/08/05 12:41