Email notification in google apps script -
https://support.google.com/docs/answer/91588?hl=en
i have sheet the cells filled in data pulled via apps script, website. pull in exact same data, not. on old sheets version use able emails when data "changes" different value. new sheets, email when new data pasted cells, though exact same data......and, can't set @ ranges anymore, entire document. there easy way watch cells when data changes, , email myself?
this looks lot you're trying do.
for checking whether value has changed after edit, this gives necessary information it. hence, know whether new value same 1 or not. implementing "workaround" talked in second link, able compare , send email myself if value changed. initiate onedit trigger goes off onedit function uses these lines after checks in place have passed.
var email = "xyz@whatever.com"; mailapp.sendemail(email, "triggermail", "a change has occurred in sheet");
note: sends "notification" sort of email can include changed values in email following tutorial.
Comments
Post a Comment