If you want to attach multiple attachment, you will need to insert another addAttachment statement. For example With newMail .Subject = "Hello World" .From = "sender Email" .To = "recipient Email" .CC = "" .BCC = "" .TextBody = "This is a test email." .AddAttachment "directory of file1" .AddAttachment "directory of file2" .AddAttachment "directory of file3" End With
@TMKJFun2 ай бұрын
Thanks for making this video. It is very helpful and very clear
@jasonfleishman98843 жыл бұрын
... hahaha ... I'm giddy with excitement. Thank you!
@kotermack Жыл бұрын
Nice lesson, thanks for posting it! Can you show how to manipulate with different recepients?
@corporateactionazimut41324 жыл бұрын
Hi, very good! I have a question, how can I only prepare mail without send immediatly, and see themm in the gmail draft folder? Many thanks.
@ankitshsharma5 жыл бұрын
Can I use for loop to send the mail to different people
@ingridglorieux64148 ай бұрын
Thanks for the video. Is it true that this method will no longer be supported, but should be switched to OAuth 2.0? Do you know how to get started with this?
@jiejenn8 ай бұрын
Unfortunately I don't know the best way to use OAuth2 protocol in VBA, but if you have some experience with Python, OAuth2 is definitely the way to go to send email with Gmail.
@fabioandresurbinasoares90462 жыл бұрын
With this code is it possible to send 500 more E-mails, or would it be blocked by the provider if you exceed this limit?
@jiejenn2 жыл бұрын
500 is a small number I won't worry about it, but I would suggest you separate them into batches between intervals.
@tandy19725 жыл бұрын
Hi! Pretty good! I have a question, do you know how to put that image in the body of the email too?
@jiejenn5 жыл бұрын
I haven't try inserting an image to the email body. Will probably experiment a bit first.
@matthieuboucher1435 жыл бұрын
@@jiejenn Hi Jie, I am looking to attach both an image in the body (saved from a printing area in a worksheet) and a PDF as an attachment. I would love to pick your brain on this one :)
@sergioroselli57264 жыл бұрын
Hi, can send a more mail in one click, from a Excel mailing LIST ?
@haribhaskar724 жыл бұрын
Hi.. I have more than one files to send to the same email id - One attachment per email. Can i loop through the files in the folder to send as per my expectations
@amardeepsinghrawat49864 жыл бұрын
thanks dude.!!! this was really amazing..
@tandy19725 жыл бұрын
Hi! Preety good! I have a question, how can I put that image in the body too?
@flowdj003 жыл бұрын
Would this code work on visual studio?
@ClaudiaGillmanAcuña5 ай бұрын
I got error: & err.description, vbinformation in my case, what can be wrong?
@yashparekh223 жыл бұрын
Hello, Thank you for the tutorial. Also can you upload a vba tutorial on how to download attachment from Gmail in specific format and fill up the mail details in 1 excel macro file.
@jiejenn3 жыл бұрын
I will look into it.
@yashparekh223 жыл бұрын
Thank you... It would be very helpful if that is possible.
@arshadali68423 жыл бұрын
what is the msoconfigURL how did i get this for my email ID??
@irinkhan81142 жыл бұрын
When my email id is wrong (i.e, not found in mail address book),the macro stops running. What can be done to prevent thia as this prevents from sending my others mails to users in the same column??
@williehanekom85811 ай бұрын
When i want to sent message to email address on cell in sheet what will the code be , because .To = Range("D15") dont work and this is the range off the cell
@jiejenn11 ай бұрын
Not enough information to help. Maybe change to =Range("D15").value.
@pauwelsgnanih71363 жыл бұрын
The transport failed to connect to the server, I am using gmail. Pleas help me. Using Excel 2016, 64 bits
@kleber_bispo2 жыл бұрын
Mr. Jenn, is it possible to run this script to send email from outlook account without an outlook app?
@jiejenn2 жыл бұрын
If you know any programming, you can use Microsoft Graph API to to manage your Outlook tasks. learn.microsoft.com/en-us/graph/api/resources/mail-api-overview?view=graph-rest-1.0
@yrlandrevancedelosa36902 жыл бұрын
Hi! Can you share how we can send it to a list of emails in excel?
@jiejenn2 жыл бұрын
You can create a list and iterate each email address.
@manvimanglik89214 жыл бұрын
thanks it really helped a lot
@FrancescoSantoro803 жыл бұрын
good morning is there a parameter to program the email for postponed sending?
@jiejenn3 жыл бұрын
You can look into Application.Wait function.
@FrancescoSantoro803 жыл бұрын
@@jiejenn good morning you could give me some more information that I'm not very practical thanks
@AmitHattiholi2 жыл бұрын
Hi! I am getting this error when I try to run it. Automation error %1 is not a valid Win32 application.
@KeffelewAssefa2 жыл бұрын
Thank you
@hhexeh5 жыл бұрын
how to add a loop to use excel list with multiple recepients and their relevant attachments?
@jiejenn5 жыл бұрын
You can make the subroutine serves as a function. To add multiple attachments, I'm going to have do some research.
@dannyworshop14665 жыл бұрын
Hello there I always encounter this "The “SendUsing” configuration value is invalid" is there any workaround?
@jiejenn5 жыл бұрын
What value are you providing to the SendinfUsing property?
@dannyworshop14665 жыл бұрын
@@jiejenn all is good i found out there are lapses on the spelling, all is good. More power!!!
@kajalkhatri9238 Жыл бұрын
When i run it it gives error of sendingusing configuration value as invalid
@AnthonyJohnFajardo5 ай бұрын
I am getting the server response was not available error. Please Help
@LifewithFoods4 жыл бұрын
How is the highlighted font of ur code is red instead of blue...how did u do that
@jiejenn4 жыл бұрын
Under Tools, go to Editor Format tab, from there, you can format the text.
@LifewithFoods4 жыл бұрын
@@jiejenn thanks🙂
@naveenkumarraju41292 жыл бұрын
it's look's great Sir, I'm getting error when I run this code Error: The SMTP server name is required, and was not found in configuration source. I gave the same code what you gave, Can you help me on this pls
@jiejenn2 жыл бұрын
Please refer your question on Stack Overflow.
@saumyabhattacharya20674 жыл бұрын
how to read emails from Gmail box using VBA?
@anasqureshi1132 жыл бұрын
Error- The system cannot find the path specified'. This error is showing while the code can someone help me on this ?
@RishiLabs Жыл бұрын
Does it stillwork
@jiejenn Жыл бұрын
It should.
@mohamadtayb77112 жыл бұрын
i have error : Error The "Sendusing" configuration value is invalid i write it correct .Item(msconfigurl & "/sendusing") = 2
@jiejenn2 жыл бұрын
Probably a typo somewhere in your script.
@monitsharma66182 жыл бұрын
Error : :The system cannot nind the files spicified" Please solution
@mittapalli19904 жыл бұрын
The transport failed to connect to the server, I am using gmail. Pleas help me
@jenniferabraham45512 жыл бұрын
I get "Error: Access is denied" when trying to send by gmail. Any thoughts on what is going wrong?
@lorenzokoerts40282 жыл бұрын
Gmail no longer supports unsafe sources and therefore blocks SMTP requests from excel
@StevenSchiff-rg5ic2 жыл бұрын
I got the following error message. "Error: The requested body part was not found in this message" can you help please?
@jiejenn2 жыл бұрын
Your request body is missing a thing or two, that's my guess.
@StevenSchiff-rg5ic2 жыл бұрын
@@jiejenn thnak you for your reply... I entered exactly what your chatgpt instructions produced and I dont see anything missing...could the same question get 2 results for each of us?
@jiejenn2 жыл бұрын
@@StevenSchiff-rg5ic hard to tell without looking at your script.
@NothingMuchhere2see3 жыл бұрын
i am getting error for " SendUsing Configuration value is invalid" please suggest what should i do next
@jiejenn3 жыл бұрын
Makes sure you provide the correct credential info.
@opfmnegros-occfses54354 жыл бұрын
it says Error: The process cannot access the file because it is being used by another process. help please
@pacoramirez73634 жыл бұрын
So now how do I make an Excel spreadsheet in my Gmail?
@jiejenn4 жыл бұрын
Not sure if I understand your question.
@keesvandorsten59754 жыл бұрын
Sadly doesn't work with excel 64-bit.
@jiejenn4 жыл бұрын
I did the video using Office 64bit, so Excel 64bit should work.
@irinkhan81142 жыл бұрын
When my email id is wrong (i.e, not found in mail address book),the macro stops running. What can be done to prevent thia as this prevents from sending my others mails to users in the same column??