function sendMailEdit(e){
if (e.range.columnStart != 5 || e.value != "Shipped") return;
const rData = e.source.getActiveSheet().getRange(e.range.rowStart,1,1,4).getValues();
let itemsOrdered = rData[0][2];
let email = rData[0][0];
let name = rData[0][1];
let trackingNo = rData[0][3];
let msg = "Hello, " + name + ". Your order: " + itemsOrdered + " is for shipping with tracking number " + trackingNo + ". Thank you for your purchase."
MailApp.sendEmail(email, "Shipped Order", msg)
}
Thank you so much for your help.
Stefanie
On Jan 1, 2023, at 5:48 PM, Stefanie Duerr <glue...@gmail.com> wrote:
Hi,
--
You received this message because you are subscribed to the Google Groups "Google Apps Script Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-apps-script-c...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-apps-script-community/50033be4-7ea9-47a1-92ea-3bbc09f35e28n%40googlegroups.com.
let htmlMsg = "Hello, " + name + ". <br><br>Your order: " + itemsOrdered + " is for shipping with tracking number " + trackingNo + ". <br><br>Thank you for your purchase."
GmailApp.sendEmail(email, "Shipped Order", "", {htmlBody:htmlMsg})
This uses HTML formatting as opposed to plain text formatting. I also prefer the GmailApp to the MailApp class -- for some reason MailApp doesn't always work for me, but GmailApp always does.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-apps-script-community/AF9B69F5-C4E2-48FE-BABB-0789D4B202A7%40bbchs.org.
You received this message because you are subscribed to a topic in the Google Groups "Google Apps Script Community" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-apps-script-community/udPwAMDptX8/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-apps-script-c...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-apps-script-community/CAANZsGPjfTBHcdVxbBF5OQE2XA-LtnYG0EChCA9gqeUBfmBvaQ%40mail.gmail.com.