Send email to specific addresses based on cell value change in google sheets
问题 Whenever a cell in column G of my spreadsheet is changed to "paid", I would like emails to be sent to the addresses contained in columns J and K on the same row, with the email subject being column A of that row, and the email message "paid" I have seen several similar questions, but am a novice user and have trouble modifying them to suit my project needs. Any help appreciated! 回答1: function onEdit(e) { var sh=e.range.getSheet(); if(e.range.columnStart==7 && e.value.toLowerCase()=='paid' &&