From e4571a488797002d5876b8b776c5b9f5dd1ec722 Mon Sep 17 00:00:00 2001 From: shimmy12345 Date: Mon, 7 Oct 2024 14:15:56 -0400 Subject: [PATCH] Update Code.js --- solutions/automations/mail-merge/Code.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solutions/automations/mail-merge/Code.js b/solutions/automations/mail-merge/Code.js index 7784dd31f..b0cfa22d2 100644 --- a/solutions/automations/mail-merge/Code.js +++ b/solutions/automations/mail-merge/Code.js @@ -96,8 +96,8 @@ function sendEmails(subjectLine, sheet=SpreadsheetApp.getActiveSheet()) { htmlBody: msgObj.html, // bcc: 'a.bcc@email.com', // cc: 'a.cc@email.com', - // from: 'an.alias@email.com', - // name: 'name of the sender', + from: 'an.alias@email.com', + name: 'name of the sender', // replyTo: 'a.reply@email.com', // noReply: true, // if the email should be sent from a generic no-reply email address (not available to gmail.com users) attachments: emailTemplate.attachments,