Thanks Laurence, your videos are very helpful to me to learn about the app script. Can you make a video, how to send message from google sheet to g-chat using app script
@@LaurenceSvekisCourses great I'll check your other videos. Another question - is there a way to track email link click responses in the google sheet? I want to track responses of a consent (newsletter confirmation). The script sends out the autoresponder email, but I will need to track who actually clicked on the link / landing page in the email.
Thanks Laurence! This two part tutorial is very helpful. I am not very good at this and just followed every step and rearrange my columns based on your example. Here's my questions. Each row will send an email to the email address in column C. What if I wanted to add two or more recipients? How do I do these? I tried creating columns for additional recipients but I don't really know how to edit the script. Hope you can help. :) Thanks in advance.
Glad it was helpful! You can comma separate the email addresses this will also work in the cc property function sendEmails() { var message = "Test Message"; var emails1 = "example@example.com" + "," + "example@example.com"; var emails2 = "example@example.com"; var Subject = "Request"; var html = message; MailApp.sendEmail({ to: emails1 cc: emails2 subject: Subject, htmlBody: html }); }
Hey everyone, can someone tell me how I form a scriplet: . Is it in the Appscript code, HTML or withing scriplet? I already tried some thing, did not work. Thank you for your help.
@@LaurenceSvekisCourses Thank you very much for your answer, Im sorry I did not explain my question correctly. I mean If want to format the content within the scriplets as date for example, where and how I do that? for example I get the date from spreadsheet bu I get 11/1/2022 Central Time 00:00, but I just need as It is in on the spreadsheet, just: 11/1/2022
@@LaurenceSvekisCourses How to do this? I'm not very good with google sheets and Apps Script, is there a video explaining how to send email with just one tap?
Thank you very much!!
You're welcome!
thank you Mr. Laur
Thanks Laurence, your videos are very helpful to me to learn about the app script. Can you make a video, how to send message from google sheet to g-chat using app script
Great suggestion!
Great job
Thanks for watching
Laurence, on line 30:
Why do you set ' temp.user = user; '?
to add it in the object format
the object is global
Is it possible to schedule the emails?
hi Laurence ,very helpful thanks. Can you do a video on how to send automatically when a row is appended each time? Would be really helpful, thanks
Great suggestion! I do have some videos on that adding it can be done with a trigger
@@LaurenceSvekisCourses great I'll check your other videos. Another question - is there a way to track email link click responses in the google sheet? I want to track responses of a consent (newsletter confirmation). The script sends out the autoresponder email, but I will need to track who actually clicked on the link / landing page in the email.
Thanks Laurence! This two part tutorial is very helpful. I am not very good at this and just followed every step and rearrange my columns based on your example. Here's my questions. Each row will send an email to the email address in column C. What if I wanted to add two or more recipients? How do I do these? I tried creating columns for additional recipients but I don't really know how to edit the script. Hope you can help. :) Thanks in advance.
Glad it was helpful! You can comma separate the email addresses this will also work in the cc property
function sendEmails() {
var message = "Test Message";
var emails1 = "example@example.com" + "," + "example@example.com";
var emails2 = "example@example.com";
var Subject = "Request";
var html = message;
MailApp.sendEmail({
to: emails1
cc: emails2
subject: Subject,
htmlBody: html
});
}
I want to know how to send reminder on same bulk mail which one send through macro
yes you can send emails with apps script
Hey everyone, can someone tell me how I form a scriplet: . Is it in the Appscript code, HTML or withing scriplet? I already tried some thing, did not work. Thank you for your help.
Yes you do the scriplet with the tags is to run the script include the = to output the results. Include the for response value
@@LaurenceSvekisCourses
Thank you very much for your answer, Im sorry I did not explain my question correctly. I mean If want to format the content within the scriplets as date for example, where and how I do that? for example I get the date from spreadsheet bu I get 11/1/2022 Central Time 00:00, but I just need as It is in on the spreadsheet, just: 11/1/2022
In the email body I need to be send table how?
You can make an HTML table and send it that way
Error: cannot read property 'first' of undefined
the object is not correctly selected
how to send for all email, not 1 by 1
each request will send an email, you can run it in a loop
@@LaurenceSvekisCourses How to do this? I'm not very good with google sheets and Apps Script, is there a video explaining how to send email with just one tap?