gasでメールマガジン配信したいのですが、icloudに送ると件名が邪魔する! 力添えをお願いしたい!
解決したいこと
GASでメールマガジンを作ろうと思っているんですが、iphoneのIcloudメールに届いた時に件名が邪魔なので消したい。
outlookでも件名なしと表示されるので、できれば何も出ない状態にしたい
または、問題・エラーが起きている画像をここにドラッグアンドドロップ
該当するソースコード
function insertonName(){
const sheet = SpreadsheetApp.getActiveSheet();
const lastRow = sheet.getLastRow();
console.log(lastRow);
const html = HtmlService.createHtmlOutputFromFile("").getContent();
const lansubject = "";
const panf = DriveApp.getFileById("");
for(let i = 2; i <= lastRow; i++){
const company = sheet.getRange(i,1).getValue();
const lastName = sheet.getRange(i,2).getValue(); //姓
const firstName = sheet.getRange(i,3).getValue();//名
const recipient = sheet.getRange(i,4).getValue();
const body = html.replace('{社名}',company).replace('{姓}',lastName).replace('{名}',firstName);
const option = {"name": "",
"htmlBody": body,
"inlineImages":{}
};
console.log(body);
console.log(option);
const txt = "";
GmailApp.sendEmail(recipient, lansubject, txt, option);
}
}
自分で試したこと
該当するのはlansubjectの所だとおもうのですが、lansubjectの部分に何も入れずに送ると件名なしになってしまうので、どうにかしたいです。