Bulk Outlook Emails with CC and Attachments and Priority using Excel VBA (Code included)

  Рет қаралды 4,293

ExcelPowerTips

ExcelPowerTips

Күн бұрын

Пікірлер
@excelpowertips7447
@excelpowertips7447 8 ай бұрын
Yes you should be able to attach any document file as you specify the full path in the Excel sheet for the VBA code to pick. Thanks for watching.
@ManagerGCTower2
@ManagerGCTower2 3 күн бұрын
Why am i getting out of range remark
@aishwaryapatra4975
@aishwaryapatra4975 4 ай бұрын
Hi Sir, I have a doubt. If in a single sheet multiple customers are there and I need only one email for that while creating the bulk email, then what should be the code
@excelpowertips7447
@excelpowertips7447 4 ай бұрын
If you want to just one email with all the recipients in that email then this code might help you: Remove the outer loop and create a single loop just to gather all email addresses and put into one string like below to a string variable like below: strSingleBulkEmailAddress = "" ' Compose the single bulk email To string for multiple recipients via loop For intRow = 2 To intLastRow strSingleBulkEmailAddress = strSingleBulkEmailAddress + wSht.Range("C" & intRow).Value + ";" Next intRow Hope this helps you and please share this very useful Excel Power Tip.
@aishwaryapatra4975
@aishwaryapatra4975 4 ай бұрын
@@excelpowertips7447 I am sorry that I explained wrong might be. My doubt is if in a sheet there is a single customer for 5 times but I want to use only one email for those 5 times with a same customer. I can't delete it because different invoices are the for one customer
@siddharth9643
@siddharth9643 4 ай бұрын
Hii sir.. I want to send excel table to outlook to more recipients... Can you help me how to create that
@excelpowertips7447
@excelpowertips7447 4 ай бұрын
So my example contains Two columns in the Excel sheet in columns C and D to pick up the To and CC email address in the VBA Loop code. To include more recipients you will either need to add new columns for each recipient or add the new recipients directly in code with a new CC list like this anonymous example: ' Set email properties With OutlookMail .To = wSht.Range("C" & intRow).Value ' Employee main email .CC = wSht.Range("D" & intRow).Value ' Manager Circular email ' For more than one CC separate with a semi-colon .CC = "New_Recipeint_1@gmail.com" & ";" & _ "New_Recipeint_2@gmail.com" & ";" & _ "New_Recipeint_3@gmail.com" & ";" & _ "New_Recipeint_4@gmail.com" & ";" & _ "New_Recipeint_5@gmail.com" & ";" & _ "New_Recipeint_6@gmail.com" & ";" & _ "New_Recipeint_7@gmail.com" & ";" & _ "New_Recipeint_8@gmail.com" This is the part of the code you need to adjust to include the new recipients (make sure you separate each email address with a semi-colon ";" as per above. It's a great question and hope this helps you. Thanks for watching and please share this Excel Power Tip.
@tameressam6622
@tameressam6622 Ай бұрын
where can i get the Macro code please?
@excelpowertips7447
@excelpowertips7447 Ай бұрын
Coming soon...
@excelpowertips7447
@excelpowertips7447 27 күн бұрын
You can download Excel VBA code from this link: drive.google.com/file/d/1_LYVZ9OwyA1posuBv7M097Dxj-er0evI/view?usp=sharing If you like my content and downloads, consider supporting me here so I can create more quality content: paypal.com/donate/?hosted_button_id=KY9HN97ZNPYGU
How To Automatically Send Customized Emails With Attachments Using Excel Macros
19:40
Learn Excel VBA to Automate Anything
14:02
Kenji Explains
Рет қаралды 510 М.
Don’t Choose The Wrong Box 😱
00:41
Topper Guild
Рет қаралды 57 МЛН
VBA User Form: Add, Update, Delete and Save
22:47
hay kel
Рет қаралды 65 М.
VBA Unleashed: Send Customized Emails in One Line
11:10
Excel Macro Mastery
Рет қаралды 11 М.
Send bulk emails using Outlook (with Signatures) - Excel VBA macro tutorial
5:23
Extreme Automation - Kamal Girdher
Рет қаралды 40 М.