Send An Email From Your Gmail Account with VBA | Excel VBA Tutorial

  Рет қаралды 39,284

Jie Jenn

Jie Jenn

Күн бұрын

Пікірлер: 80
@jiejenn
@jiejenn 5 жыл бұрын
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
@TMKJFun
@TMKJFun 2 ай бұрын
Thanks for making this video. It is very helpful and very clear
@jasonfleishman9884
@jasonfleishman9884 3 жыл бұрын
... hahaha ... I'm giddy with excitement. Thank you!
@kotermack
@kotermack Жыл бұрын
Nice lesson, thanks for posting it! Can you show how to manipulate with different recepients?
@corporateactionazimut4132
@corporateactionazimut4132 4 жыл бұрын
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.
@ankitshsharma
@ankitshsharma 5 жыл бұрын
Can I use for loop to send the mail to different people
@ingridglorieux6414
@ingridglorieux6414 8 ай бұрын
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?
@jiejenn
@jiejenn 8 ай бұрын
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.
@fabioandresurbinasoares9046
@fabioandresurbinasoares9046 2 жыл бұрын
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?
@jiejenn
@jiejenn 2 жыл бұрын
500 is a small number I won't worry about it, but I would suggest you separate them into batches between intervals.
@tandy1972
@tandy1972 5 жыл бұрын
Hi! Pretty good! I have a question, do you know how to put that image in the body of the email too?
@jiejenn
@jiejenn 5 жыл бұрын
I haven't try inserting an image to the email body. Will probably experiment a bit first.
@matthieuboucher143
@matthieuboucher143 5 жыл бұрын
@@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 :)
@sergioroselli5726
@sergioroselli5726 4 жыл бұрын
Hi, can send a more mail in one click, from a Excel mailing LIST ?
@haribhaskar72
@haribhaskar72 4 жыл бұрын
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
@amardeepsinghrawat4986
@amardeepsinghrawat4986 4 жыл бұрын
thanks dude.!!! this was really amazing..
@tandy1972
@tandy1972 5 жыл бұрын
Hi! Preety good! I have a question, how can I put that image in the body too?
@flowdj00
@flowdj00 3 жыл бұрын
Would this code work on visual studio?
@ClaudiaGillmanAcuña
@ClaudiaGillmanAcuña 5 ай бұрын
I got error: & err.description, vbinformation in my case, what can be wrong?
@yashparekh22
@yashparekh22 3 жыл бұрын
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.
@jiejenn
@jiejenn 3 жыл бұрын
I will look into it.
@yashparekh22
@yashparekh22 3 жыл бұрын
Thank you... It would be very helpful if that is possible.
@arshadali6842
@arshadali6842 3 жыл бұрын
what is the msoconfigURL how did i get this for my email ID??
@irinkhan8114
@irinkhan8114 2 жыл бұрын
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??
@williehanekom858
@williehanekom858 11 ай бұрын
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
@jiejenn
@jiejenn 11 ай бұрын
Not enough information to help. Maybe change to =Range("D15").value.
@pauwelsgnanih7136
@pauwelsgnanih7136 3 жыл бұрын
The transport failed to connect to the server, I am using gmail. Pleas help me. Using Excel 2016, 64 bits
@kleber_bispo
@kleber_bispo 2 жыл бұрын
Mr. Jenn, is it possible to run this script to send email from outlook account without an outlook app?
@jiejenn
@jiejenn 2 жыл бұрын
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
@yrlandrevancedelosa3690
@yrlandrevancedelosa3690 2 жыл бұрын
Hi! Can you share how we can send it to a list of emails in excel?
@jiejenn
@jiejenn 2 жыл бұрын
You can create a list and iterate each email address.
@manvimanglik8921
@manvimanglik8921 4 жыл бұрын
thanks it really helped a lot
@FrancescoSantoro80
@FrancescoSantoro80 3 жыл бұрын
good morning is there a parameter to program the email for postponed sending?
@jiejenn
@jiejenn 3 жыл бұрын
You can look into Application.Wait function.
@FrancescoSantoro80
@FrancescoSantoro80 3 жыл бұрын
@@jiejenn good morning you could give me some more information that I'm not very practical thanks
@AmitHattiholi
@AmitHattiholi 2 жыл бұрын
Hi! I am getting this error when I try to run it. Automation error %1 is not a valid Win32 application.
@KeffelewAssefa
@KeffelewAssefa 2 жыл бұрын
Thank you
@hhexeh
@hhexeh 5 жыл бұрын
how to add a loop to use excel list with multiple recepients and their relevant attachments?
@jiejenn
@jiejenn 5 жыл бұрын
You can make the subroutine serves as a function. To add multiple attachments, I'm going to have do some research.
@dannyworshop1466
@dannyworshop1466 5 жыл бұрын
Hello there I always encounter this "The “SendUsing” configuration value is invalid" is there any workaround?
@jiejenn
@jiejenn 5 жыл бұрын
What value are you providing to the SendinfUsing property?
@dannyworshop1466
@dannyworshop1466 5 жыл бұрын
@@jiejenn all is good i found out there are lapses on the spelling, all is good. More power!!!
@kajalkhatri9238
@kajalkhatri9238 Жыл бұрын
When i run it it gives error of sendingusing configuration value as invalid
@AnthonyJohnFajardo
@AnthonyJohnFajardo 5 ай бұрын
I am getting the server response was not available error. Please Help
@LifewithFoods
@LifewithFoods 4 жыл бұрын
How is the highlighted font of ur code is red instead of blue...how did u do that
@jiejenn
@jiejenn 4 жыл бұрын
Under Tools, go to Editor Format tab, from there, you can format the text.
@LifewithFoods
@LifewithFoods 4 жыл бұрын
@@jiejenn thanks🙂
@naveenkumarraju4129
@naveenkumarraju4129 2 жыл бұрын
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
@jiejenn
@jiejenn 2 жыл бұрын
Please refer your question on Stack Overflow.
@saumyabhattacharya2067
@saumyabhattacharya2067 4 жыл бұрын
how to read emails from Gmail box using VBA?
@anasqureshi113
@anasqureshi113 2 жыл бұрын
Error- The system cannot find the path specified'. This error is showing while the code can someone help me on this ?
@RishiLabs
@RishiLabs Жыл бұрын
Does it stillwork
@jiejenn
@jiejenn Жыл бұрын
It should.
@mohamadtayb7711
@mohamadtayb7711 2 жыл бұрын
i have error : Error The "Sendusing" configuration value is invalid i write it correct .Item(msconfigurl & "/sendusing") = 2
@jiejenn
@jiejenn 2 жыл бұрын
Probably a typo somewhere in your script.
@monitsharma6618
@monitsharma6618 2 жыл бұрын
Error : :The system cannot nind the files spicified" Please solution
@mittapalli1990
@mittapalli1990 4 жыл бұрын
The transport failed to connect to the server, I am using gmail. Pleas help me
@jenniferabraham4551
@jenniferabraham4551 2 жыл бұрын
I get "Error: Access is denied" when trying to send by gmail. Any thoughts on what is going wrong?
@lorenzokoerts4028
@lorenzokoerts4028 2 жыл бұрын
Gmail no longer supports unsafe sources and therefore blocks SMTP requests from excel
@StevenSchiff-rg5ic
@StevenSchiff-rg5ic 2 жыл бұрын
I got the following error message. "Error: The requested body part was not found in this message" can you help please?
@jiejenn
@jiejenn 2 жыл бұрын
Your request body is missing a thing or two, that's my guess.
@StevenSchiff-rg5ic
@StevenSchiff-rg5ic 2 жыл бұрын
@@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?
@jiejenn
@jiejenn 2 жыл бұрын
@@StevenSchiff-rg5ic hard to tell without looking at your script.
@NothingMuchhere2see
@NothingMuchhere2see 3 жыл бұрын
i am getting error for " SendUsing Configuration value is invalid" please suggest what should i do next
@jiejenn
@jiejenn 3 жыл бұрын
Makes sure you provide the correct credential info.
@opfmnegros-occfses5435
@opfmnegros-occfses5435 4 жыл бұрын
it says Error: The process cannot access the file because it is being used by another process. help please
@pacoramirez7363
@pacoramirez7363 4 жыл бұрын
So now how do I make an Excel spreadsheet in my Gmail?
@jiejenn
@jiejenn 4 жыл бұрын
Not sure if I understand your question.
@keesvandorsten5975
@keesvandorsten5975 4 жыл бұрын
Sadly doesn't work with excel 64-bit.
@jiejenn
@jiejenn 4 жыл бұрын
I did the video using Office 64bit, so Excel 64bit should work.
@irinkhan8114
@irinkhan8114 2 жыл бұрын
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??
Use Excel VBA to Read API Data
20:48
Excel Macro Mastery
Рет қаралды 145 М.
Cat mode and a glass of water #family #humor #fun
00:22
Kotiki_Z
Рет қаралды 42 МЛН
IL'HAN - Qalqam | Official Music Video
03:17
Ilhan Ihsanov
Рет қаралды 700 М.
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 17 МЛН
How To Send Outlook Emails From Excel Using VBA For Beginners + FREE TEMPLATE
19:08
Send Google Mail From Excel - 3 Different Options
10:02
Excel Macro Mania
Рет қаралды 7 М.
Send Personalized BULK Emails in Gmail (for FREE)!
6:50
Jeff Su
Рет қаралды 662 М.
How To Automatically Send Customized Emails With Attachments Using Excel Macros
19:40
How to send email using Gmail via Excel VBA
16:10
Dinesh Kumar Takyar
Рет қаралды 88 М.
Excel VBA Macro: Send Email from a Specific Account (in Outlook)
7:00
5 Things I wish I knew When I started using Excel VBA
12:45
Excel Macro Mastery
Рет қаралды 340 М.
Using VBA to Enter Data into an Excel Table
14:08
MyExcelOnline.com
Рет қаралды 67 М.
Cat mode and a glass of water #family #humor #fun
00:22
Kotiki_Z
Рет қаралды 42 МЛН