GAS トリガー設定後に下記のエラーメッセージが出ます。
まずは有効のシートを選んでください。
デバックも特になく、クリックしたら問題なくEmailも送信されます。
トリガー設定するとエラーになる理由はなんでしょうか、、、
【コード全文】
var MAIL_ADDRESS = ['xx'];
function SendSFDCNEWREQ() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sh = ss.getSheetByName("xx");
var data = sh.getDataRange().getValues();
// 指定したセル範囲にフォーマットを適用
var body = "";
body += "Now I am testing Auto Email reminder for Non-TOP up clients"+',\n\n'
body += "These Lists are clients that we do not write name on go/Sfdcrelated \n\n"
body += "<table border='1'>";
for (var i=0; i<= ss.getLastRow()-1 ; i++) {
if(i===0){
body += "<tr bgcolor='yellow'>"; }else{ body += "<tr bgcolor='white'>";
};
for (var j=0; j<=5; j++) {
body += "<td>"+data[i][j]+"</td>"
}
body += "</tr>";
}
body += "</table>";
MailApp.sendEmail({
to : to.join(",") ,
subject : "xx ",
htmlBody : body
});
}
あなたの回答
tips
プレビュー