How To Trigger Emails From Check Box Ticks | Google App Script | Send Bulk emails

  Рет қаралды 7,621

Data In Nut Shell

Data In Nut Shell

Жыл бұрын

Buy Now : dashboard.stripe.com/payment-...
This video shows how you can trigger automatic emails from google sheets using a check box in the Google Sheets.
If code do not work watch this : • How To Create OnEdit()...
- Please also create a onedit trigger or let me know if u need help on it
#googlesheets #googleappsscript #appscript #googlesheetstips #automations #gmail #emailautomation

Пікірлер: 39
@itsbrex
@itsbrex Жыл бұрын
Great video! I've setup similar sheets in the past using checkbox event triggers as well. 👏🏼
@DataInNutShell
@DataInNutShell Жыл бұрын
Thanks, yea its really usefull
@kaptanjay26
@kaptanjay26 Жыл бұрын
This video is very helpful for me from Thailand.❤
@DataInNutShell
@DataInNutShell Жыл бұрын
Thanks
@yeasinsanny425
@yeasinsanny425 Жыл бұрын
function onEdit(e) { var row = e.range.getRow(); var value = e.value; var sheet = e.range.getSheet(); switch (value) { case "TRUE": var to = sheet.getRange(`A${row}`).getValues()[0][0]; var subject = sheet.getRange(`B${row}`).getValues()[0][0]; var emailBody = `${sheet.getRange(`C${row}`).getValues()[0][0]}RegardsName`; MailApp.sendEmail({to, subject, htmlBody: emailBody}); break; default: // Do nothing break; } } there alternative code performance are very good
@dimitrisvoudouris
@dimitrisvoudouris Жыл бұрын
wonderful work
@DataInNutShell
@DataInNutShell Жыл бұрын
Thanks for the visit
@mohcinemarzaq4547
@mohcinemarzaq4547 Жыл бұрын
Thanks veryyyyyy much 😁😁😁🙏🙏👍👍👍❤️❤️
@DataInNutShell
@DataInNutShell Жыл бұрын
welcome
@Babfernandez
@Babfernandez 8 ай бұрын
TypeError: Cannot read properties of undefined (reading 'range')
@TilakConrad
@TilakConrad Жыл бұрын
Hi - just to say I found my stupid mistake - I hadn't set the trigger - super - thanks very much
@DataInNutShell
@DataInNutShell Жыл бұрын
nothing is stupid, its just a milestone 😬🤟🏻
@jasmineboomy
@jasmineboomy 8 ай бұрын
Thanks for video, mine isn't working though! Are you supposed to copy script exactly like yours or add more details? where you have written "row" do we fill with row number? Confused!!
@DataInNutShell
@DataInNutShell 8 ай бұрын
share ur sheet with edit access once : pbtchinaa@gmail.com
@user-sn6xo2uj5m
@user-sn6xo2uj5m Жыл бұрын
Greate! amazing video, kindly request you, provide the sheet access
@DataInNutShell
@DataInNutShell Жыл бұрын
done
@user-zy6ui4xr4x
@user-zy6ui4xr4x Жыл бұрын
Hey this will work on checkbox but I want to do this same as on dropdown list cant it work
@DataInNutShell
@DataInNutShell Жыл бұрын
yes it can work but with some customizations in code
@user-zy6ui4xr4x
@user-zy6ui4xr4x Жыл бұрын
@@DataInNutShell can you provide me the customized code
@DaniloNunez-vj8cd
@DaniloNunez-vj8cd Жыл бұрын
sent you an email! I tried to adjust this to my specific sheet but I'm waiting errors.
@DataInNutShell
@DataInNutShell Жыл бұрын
replied you over email please check once
@anandadsul1826
@anandadsul1826 Жыл бұрын
Hey, tried this. Not working with me for some reason.
@DataInNutShell
@DataInNutShell Жыл бұрын
Can you share the screenshot : pbtchinaa@gmail.com
@DataInNutShell
@DataInNutShell Жыл бұрын
I have provided view access of the sheet, pls make a copy and try.
@mdjahidulislamsaimon8869
@mdjahidulislamsaimon8869 10 ай бұрын
my script showing error which i was unable to fix.
@DataInNutShell
@DataInNutShell 10 ай бұрын
Hi , can you give me your sheet access at pbtchinaa@gmail.com also the error screenshot
@user-vj7ry5lb1l
@user-vj7ry5lb1l Жыл бұрын
Hi, I've tried this, this script not working in my sheet. Getting this type of error - TypeError: Cannot read properties of undefined (reading 'range.'). Please help
@DataInNutShell
@DataInNutShell Жыл бұрын
pls share me ur copy link at : pbtchinaa@gmail.com
@DataInNutShell
@DataInNutShell Жыл бұрын
Hi Piyush, Apologies for late reply, I tried the script using your sheet, I am getting email , pls check your gmail's sent section, I have received it. Let me know where exactly you are getting the error
@imjustzoee1320
@imjustzoee1320 Жыл бұрын
Hey, I am having the same issue as well. Also, do I need to identify the sheet because I have a large database, with about 10+ linking sheets...
@DataInNutShell
@DataInNutShell Жыл бұрын
@@imjustzoee1320 I have checked the as of now it is working, If possible pls give me a copy of your sheet and will check
@vinodkumar-np8nq
@vinodkumar-np8nq Жыл бұрын
​@@DataInNutShellgetting the same error
@dimitrisvoudouris
@dimitrisvoudouris Жыл бұрын
great, but it won't send my emails
@DataInNutShell
@DataInNutShell Жыл бұрын
tou can send me screenshot snd i hope u r making copy of my sheet and using it as is, bz there are some hidden cells for reference calc, If taking only code then it might nt wrk due to absence of those references
@richielcana9991
@richielcana9991 Жыл бұрын
/I cant access the codes
@DataInNutShell
@DataInNutShell Жыл бұрын
Request for access from share button will give u a view access and then you can create your own copy
@TilakConrad
@TilakConrad Жыл бұрын
Hi, Thanks very much for this - I'm a noob and your style of teaching is superb. I have a problem - not sure why - the appscript was all cut and paste - BUT - this is the error I get i.imgur.com/p6iGgUp.png hope you can advice what I'm doing wrong. Thanks very much
@DataInNutShell
@DataInNutShell Жыл бұрын
Apology for late reply, if its not resolved yet then can u pls gve me the sheet link once with edit access
Send Personalized BULK Emails in Gmail (for FREE)!
6:50
Jeff Su
Рет қаралды 530 М.
HOW DID HE WIN? 😱
00:33
Topper Guild
Рет қаралды 45 МЛН
Incredible magic 🤯✨
00:53
America's Got Talent
Рет қаралды 76 МЛН
That's how money comes into our family
00:14
Mamasoboliha
Рет қаралды 11 МЛН
Red❤️+Green💚=
00:38
ISSEI / いっせい
Рет қаралды 51 МЛН
Automate emails with Google Sheets
17:17
Matt Brigidi
Рет қаралды 18 М.
Mail Merge in Google Sheets & Gmail (for free)
12:52
Kevin Stratvert
Рет қаралды 748 М.
Google Apps Script Send Emails from List
17:23
The Excel Cave
Рет қаралды 4,1 М.
How To Send Email Attachments with Google Apps Script
10:42
Data Meaning
Рет қаралды 15 М.
10 HIDDEN SECRETS of Checkboxes in Google Sheets!
17:33
Hash Ali
Рет қаралды 18 М.
How to Automate Emails Through your Google Sheet
22:35
Bootstrapping Tools
Рет қаралды 26 М.
HOW DID HE WIN? 😱
00:33
Topper Guild
Рет қаралды 45 МЛН