Hi Laurence, Great tutorial - very clear and understandable. Everything work as advertised and I've learned a lot about object oriented programming. I did have an issue with htmlBody vs htmlbody but your trouble shooting techniques works great. Thanks again - I will continue this series with much excitement,
@Amalshavahab Жыл бұрын
Hi Laurence, It was really helpful and you explained from a layman's view which made it very easy to understand each and every line of syntax. But is there any way to keep a separate button to send the mail for all the mails together at one click?
@Katsiarina12 жыл бұрын
Love that, going to try it out at work 👍🏻
@LaurenceSvekisCourses2 жыл бұрын
thanks for watching the video
@boredomindex33532 жыл бұрын
Hi Laurence, Thank you for the excellent tutorial. Btw, how do we add the email subject dynamically? Let's say I have an extra column with subject lines.
@LaurenceSvekisCourses2 жыл бұрын
Its in the mailApp Service sendMail() you can also do it in the options as subject which provides more flexiblity.
@c.nastassi2 жыл бұрын
Hi! Thanks very much for the video. I used the code and it works perfectly. I was wondering, what should I change in order to send all the emails at the same time? I guess it is something related to the getActiveCell but the truth is that I do not have a HTML background and I am not sure.
@LaurenceSvekisCourses2 жыл бұрын
You can send lots of emails at once, keep in mind there are limits and the apps script server can time out on scripts that are running too many processes at once, this depends on the server load and will vary
@hafsaadil7930 Жыл бұрын
Hey Lau, I want to inquire about the execution time run out for approver I have added all the codes as you’ve mentioned but still I’m getting this error ? Can you please explain
@TheKirbyn2 жыл бұрын
Hi, I have an html template file and in the paragraph I need to add a variable that is defined in my google app script. How do I pick up that variable?
@LaurenceSvekisCourses2 жыл бұрын
Use the scriptlet
@thomasbihn2 жыл бұрын
A couple things I noticed - 1. Tools didn't have Script Editor, but did have Apps Script as a menu option. 2. Next to Debug is "No Functions" I didn't see how to get onOpen to test it without exiting the spreadsheet
@LaurenceSvekisCourses2 жыл бұрын
The sheets changed its now under extensions, works the same way. The drop down of functions should be the same for run and debug.
@HarpreetSingh-sm8vr Жыл бұрын
btw if i want to send email only for last row or when there is new data in sheet,how can i send to that last row only .
@calebmackey55293 жыл бұрын
How did you popluate the "yes_no" button options, mine will not populate and when it is manually typed in it gets an error message.
@LaurenceSvekisCourses3 жыл бұрын
Please refer to the source code at git
@taylorpearson299 Жыл бұрын
Hi I am attempting to follow this video. I have done the code just like you have but when I try to run the script to send the email it does not send. I try to debug it and run in the apps script but there are no errors. What am I missing that it does not send the email? I am attempting to get it to send an email when someone marks something as approved in the spreadsheet.
@LaurenceSvekisCourses Жыл бұрын
do you throw any errors in the debugger?
@PartTimeHero773 жыл бұрын
Thank you for the video. I have a couple of questions for you. What if I wanted to also send an email for the "NO" answer? What if I wanted to send it from. The Gmail mail function without the HTML? Thank you again
@LaurenceSvekisCourses3 жыл бұрын
Yes within the code you can send the email by applying a condition statement. You can send text based emails of HTML emails with MailApp class
@ex3d2 жыл бұрын
Excellent content 11/10
@LaurenceSvekisCourses2 жыл бұрын
thank you
@dimitrisvoudouris2 жыл бұрын
I would like to ask if it is possible to send emails with the ability to select the sender, that is, I have 100 email addresses but I want to send to two specific ones
@LaurenceSvekisCourses2 жыл бұрын
Yes you can customize the script to send to specific address from a list, use an array for the list and compare it to the full list if you want.
@dimitrisvoudouris2 жыл бұрын
@@LaurenceSvekisCourses thank you very much
@HarpreetSingh-sm8vr Жыл бұрын
i want to send email only when there is new data in sheet,i mean to last row of data in sheets rather tha i dont want to start from begining to end. want to send only last row only. How can i do
@NarenSushma2 жыл бұрын
'Exception: No HTML file named temp was found' is what I am getting when I run it. Could you pls help me out with this. Thanks.
@LaurenceSvekisCourses2 жыл бұрын
You would need to create the file by that name to reference it within the code.
@fakeaccount34152 жыл бұрын
Do you know how to format time in html. It always shows as eastern time bla bla
@LaurenceSvekisCourses2 жыл бұрын
It goes by the Google Account settings within the sheet.
@EBahri2 жыл бұрын
How many mail can I send?
@EBahri2 жыл бұрын
!!
@EBahri2 жыл бұрын
and can i use it for email marketing , thank you sir
@LaurenceSvekisCourses2 жыл бұрын
There are limits it depends on your Google Account. I wouldn't suggest it for a mass emailing as there could be blocks in place.
@ehsan.10152 жыл бұрын
When I press run it shows this: Exception: Cannot call SpreadsheetApp.getUi() from this context. onOpen @ Untitled 4.gs:2. Can someone help me out pls.
@LaurenceSvekisCourses2 жыл бұрын
the ui is only with bound scripts not standalone. the error is that there is no ui available
@thomasbihn2 жыл бұрын
@@LaurenceSvekisCourses How do you make it a bound script? There was no script editor menu for me when trying to follow allong, just Extensions - > App Scripts. Thanks