Automated Multiple Emails with Multiple Attachments and "From" option

Поділитися
Вставка
  • Опубліковано 29 вер 2024
  • #BulkEmail #VBAAutomation
    Hello Friends,
    In this video, you will learn how to create an Automated Bulk Emailer with Multiple Attachments and the "From" option. You can choose the Send or display option buttons. We have given a Skip column wherein you can put "Yes" if you want to skip the email for a particular line.
    We have given the "From" option also. In column C of the template. If you are using multiple mailboxes in your outlook then you can decide from which mailbox you want to send the email.
    Download the practice files from the below link:
    www.pk-anexcel...
    See how to send bulk email part 1 of this video:
    • Automation: Send bulk ...
    See our more Power BI videos:
    • Power BI Tutorial
    Learn and download our interactive Excel dashboards free of cost-
    • Excel Dashboards
    Download the Free Project Management Dashboard
    www.pk-anexcel...
    Download the Calendar Control in VBA from below link
    www.pk-anexcel...
    Download our free Excel utility Tool and improve your productivity:
    www.pk-anexcel...
    See our Excel Products:
    www.pk-anexcel...
    Visit to learn more:
    Chart and Visualizations: www.pk-anexcel...
    VBA Course: www.pk-anexcel...
    Download useful Templates: www.pk-anexcel...
    Dashboards: www.pk-anexcel...
    Watch the best info-graphics and dynamic charts from below link:
    • Dynamic Graphs
    Learn and free download best excel Dashboard template:
    • Excel Dashboards
    Learn Step by Step VBA:
    • VBA Tutorial
    Website:
    WWW.PK-AnExcel...
    Facebook:
    / pkanexcelexpert
    Telegram:
    t.me/joinchat/...
    Pinterest:
    / pkanexcelexpert
    LinkedIn:
    / pk-anexcelexpert
    Instagram:
    / pkanexcelexpert
    Visit our Amazon Store
    www.amazon.in/...

КОМЕНТАРІ • 207

  • @wolfenstein6288
    @wolfenstein6288 2 роки тому

    This is the best bulk sending email vba excel ever created, kudos 👏

    • @PKAnExcelExpert
      @PKAnExcelExpert  2 роки тому +1

      Glad you think so!

    • @wolfenstein6288
      @wolfenstein6288 2 роки тому

      @@PKAnExcelExpert this actually helping me a lot, I have to send 500+ invoices with multiple attachments to clients , which usually takes almost 3 days but now with this excel it takes only minutes

    • @Ossieosman
      @Ossieosman Рік тому

      @@wolfenstein6288 How do you send 500 emails in outlook. I have a problem sending 200 on outlook or gmail. I want to send more on outlook

  • @a2zjobsinformation600
    @a2zjobsinformation600 Рік тому

    Hi pk, how to edit this one Please find the Attached the Report. regards Pk

  • @DaveMir
    @DaveMir Рік тому +1

    Thanks PK! I really enjoy the way you explain the stuff. Is it possible to add an image at the email's body?

    • @PKAnExcelExpert
      @PKAnExcelExpert  Рік тому

      Yes, absolutely. Please watch the below video:
      ua-cam.com/video/aD-lo81I5C4/v-deo.html

  • @Hos9_Shahin
    @Hos9_Shahin 2 роки тому +1

    Thanks a lot!

  • @yogitajain229
    @yogitajain229 7 місяців тому

    Hi PK thanks for video could you show me it through Macros rather than coding

  • @AccountsVKCA
    @AccountsVKCA 5 місяців тому

    what if i have to send from Gmail and not from outlook? what to add in VBA code instead of "outlook.application"

  • @junagena9159
    @junagena9159 Рік тому

    Thanks PK, this is great! Need help for enhancing this with my signature but struggle to do. I'm trying to integrate your other tutorial of with signature but keep on getting issue. If possible to provide me a copy of VBA script for that?

    • @junagena9159
      @junagena9159 Рік тому

      This is not working...
      Sub Send_Email_with_Signature()
      Dim sh As Worksheet
      Set sh = ThisWorkbook.Sheets("Bulk Email")
      Dim i As Integer
      Dim OA As Object
      Dim msg As Object
      Dim sign As String
      Set OA = CreateObject("outlook.application")
      Dim last_row As Integer
      last_row = sh.Range("D" & Application.Rows.Count).End(xlUp).Row
      For i = 6 To last_row
      If UCase(sh.Range("A" & i).Value) "YES" Then

      Set msg = OA.createitem(0)

      With msg
      .display
      End With

      sign = msg.htmlbody

      If sh.Range("C" & i).Value "" Then msg.SentOnBehalfOfName = sh.Range("C" & i).Value

      msg.To = sh.Range("D" & i).Value
      msg.cc = sh.Range("E" & i).Value
      msg.Subject = sh.Range("F" & i).Value
      msg.body = sh.Range("G" & i).Value

      If sh.Range("M" & i).Value "" Then
      msg.attachments.Add sh.Range("M" & i).Value
      End If

      If sh.Range("N" & i).Value "" Then
      msg.attachments.Add sh.Range("N" & i).Value
      End If

      If sh.Range("O" & i).Value "" Then
      msg.attachments.Add sh.Range("O" & i).Value
      End If

      If sh.Range("A1").Value = 1 Then
      msg.send
      Else
      msg.display
      End If

      sh.Range("B" & i).Value = "Done"

      End If

      Next i
      MsgBox "Process Completed!!!", vbInformation
      End Sub
      Sub Get_File_Path()

      Dim file_path As String
      file_path = Application.GetOpenFilename(MultiSelect:=False)
      If file_path "False" Then
      Selection.Value = file_path
      End If
      End Sub

  • @manassehkisame6286
    @manassehkisame6286 Рік тому

    Thanks...but this is not working for Outlook 365 since outlook desktop might become deprecated in a few years

  • @trader420OP
    @trader420OP 2 роки тому

    Is it possible to add multiple email in TO section of outlook instead of send separate email to each individuals?
    If yes please create a video on it.
    Thank You

    • @PKAnExcelExpert
      @PKAnExcelExpert  2 роки тому

      Just put the semicolon (;) sapareted email id in To column.

  • @pankajjaswani9155
    @pankajjaswani9155 2 роки тому +1

    Instead of using multiple columns for multiple attachments, you can use a single column where the user can quickly select the attachment and the path will appear in the column cell.

    • @wolfenstein6288
      @wolfenstein6288 2 роки тому

      How ?

    • @wolfenstein6288
      @wolfenstein6288 2 роки тому +1

      I want to reverse it, i want to add multiple file paths in single column

    • @pankajjaswani9155
      @pankajjaswani9155 2 роки тому +1

      @@wolfenstein6288 I had also replied the same please read once again. I clearly suggested to use a single column to select the multiple attachment's path by selecting multiple files at the same time in a single cell.

    • @ketansharma9114
      @ketansharma9114 Рік тому

      Do you know how we can make body more creative coz there is no option

  • @lijojose9104
    @lijojose9104 2 роки тому

    Hi,
    Thank you for this amazing video. Could you please assist me on how we can add the signature to this email?

    • @PKAnExcelExpert
      @PKAnExcelExpert  2 роки тому

      Thanks for your valuable feedback. Please watch the below given video to add the signature in the email-
      ua-cam.com/video/q9kTgTghN2g/v-deo.html

    • @lijojose9104
      @lijojose9104 2 роки тому

      @@PKAnExcelExpert Thank you. I tried to add the sign variable and the code to this one but it's showing html code instead of the signature. Please help me to add the signature to this code. Thanks a ton.

    • @lijojose9104
      @lijojose9104 2 роки тому

      @@PKAnExcelExpert Thank you. It worked.

  • @divyashivhare5510
    @divyashivhare5510 4 місяці тому

    Not able to download practice file... Pls help

  • @sanjaydeshmukh5539
    @sanjaydeshmukh5539 2 роки тому

    Hello sir,
    Thank you for sharing.
    Can we send bulk email through web browser Gmail? not a outlook

    • @PKAnExcelExpert
      @PKAnExcelExpert  2 роки тому +1

      Yes, you can. I will create a video on this topic

    • @DhruvDua88
      @DhruvDua88 2 роки тому

      @@PKAnExcelExpert Please do create a video on this topic using CDO to send emails without outlook.

  • @sanjaytiwari2740
    @sanjaytiwari2740 Рік тому

    Sir i want to send form 16 tds through mail to 1000 employee but problem is all data is on pan base how i can mail on one click

  • @sushilverma8390
    @sushilverma8390 Рік тому +1

    Sir please help us to share the vba code and micro enable workbook as above example shared
    Thanks

    • @PKAnExcelExpert
      @PKAnExcelExpert  Рік тому

      Download link has been given in video's description box or visit our website WWW.PK-AnExcelExpert.Com

  • @soaibaktar7818
    @soaibaktar7818 2 роки тому

    Their is available subject options

  • @Khiladityagi
    @Khiladityagi Місяць тому

    Not even a single file is getting downloaded-- there is no download option, the page is full of advertisement

  • @pandharinathjoshi6565
    @pandharinathjoshi6565 2 роки тому

    Sir if any like this to send Whats app message sir

    • @PKAnExcelExpert
      @PKAnExcelExpert  2 роки тому

      Great suggestion! I will try to create a video on this topic.

  • @trik3002
    @trik3002 Рік тому +3

    hello sir
    I tried to download the file attached in the description, but it can't be downloaded (either virus or corrupt). Kindly share another link to download the file.
    Regards

  • @elvayrah7136
    @elvayrah7136 4 місяці тому +1

    Hi, thank you for thisvery helpful tutorial. May I know where can i find the vba coding for this? 😊

  • @KingTechCodingClinic
    @KingTechCodingClinic 2 роки тому +6

    My mentor with another amazing tutorial again. You have made VBA tutorials so easy for me and I'm now enjoying every bit of it. My channel too is growing rapidly because of you. I can't thank you enough

  • @ghaivirendesingh
    @ghaivirendesingh 7 місяців тому +1

    Thanks PK sir this video is very useful , Sir can you also add the send WhatsApp option in this video .

  • @toufiqurrahmantoufique9538
    @toufiqurrahmantoufique9538 3 місяці тому

    Hi, Could you please share the excel download link? I couldn't download from the source. Thanks in advance

  • @likhithlicky2947
    @likhithlicky2947 Рік тому +1

    Sir can you please tell how to add two or more mail in "TO" And "CC"... So tht it will be more benifit

  • @rg08581
    @rg08581 2 роки тому +4

    Sir this is very very helpful... U not only explained but also shared the entire file for practice..... God bless you and your team 👍

    • @PKAnExcelExpert
      @PKAnExcelExpert  2 роки тому +1

      Thanks for your valuable feedback🙏

    • @druberry6998
      @druberry6998 Рік тому

      @@PKAnExcelExpert Hi, i am using your Excel file right now but I am having issues attaching multiple files... error message: run time error. "cannot find this file. verify the path and file name are correct"

  • @chewjs977
    @chewjs977 8 місяців тому +1

    thank you so much your video i am learning alots, but how add email signature ?

    • @PKAnExcelExpert
      @PKAnExcelExpert  8 місяців тому

      Thanks for your valuable feedback. Please watch the below video for email signature:
      ua-cam.com/video/q9kTgTghN2g/v-deo.html

    • @chewjs977
      @chewjs977 7 місяців тому

      Hello , thank you much the video ,after i added the email signature yes able to display , but only 1email come out if got 10 email to send ..not sure where gone wrong the coding , appriciate if you able to teach me ? .thank you so much.

  • @shenvimangu
    @shenvimangu 3 місяці тому

    This bulk emailer will work for any domain email addresses? apart from gmail? I mean recipient email

  • @tangchion477
    @tangchion477 Рік тому +2

    thank you for yr video, I have stuck at a point where the attachment process stopped when running on empty cell. I figured it out after watching yr video. Thank you again. it definitely helps a lot.

  • @ashishsrivastava2363
    @ashishsrivastava2363 4 місяці тому

    Hi, How I can add date in body of e-mail? can you quickly respond to my question

  • @Kishor7
    @Kishor7 6 місяців тому

    Hello PK, if I have to share payslips of employees. How can share using same macro

  • @HritikGoel-p2j
    @HritikGoel-p2j 8 місяців тому

    Sir it showing an Complie error : Wrong number of arguments or invalid property assignment

  • @aniketgharge6026
    @aniketgharge6026 3 місяці тому

    Hello PK, can you create a video on how to write a dynamic email in this sheet ?

  • @vijaykulkarni7724
    @vijaykulkarni7724 27 днів тому

    I want to replay same email every week with old trail mail is it possible

  • @mathematicsclasseasyway9250

    Sir ek video library management par banaye
    Book issue and book return
    Please sir 🙏

  • @salamakhan9447
    @salamakhan9447 2 місяці тому

    Plz download this file, Automated Multiple Emails with Multiple Attachments and "From" option

    • @salamakhan9447
      @salamakhan9447 2 місяці тому

      Please make it clear whether the file is available for download or not. Also, provide a straightforward method to download the file without any confusion or misleading information.

  • @nandabadsiwal9324
    @nandabadsiwal9324 9 місяців тому

    Facing compile error
    Variable not defined
    Can you help me

  • @nandabadsiwal9324
    @nandabadsiwal9324 9 місяців тому

    Pls sir it's important and also I want to send summary on the mail body

  • @caruanagiacomo3322
    @caruanagiacomo3322 Рік тому +2

    HELLO, the king of vba thank you for all these working vba's

  • @MuhammadBilal-bc9sg
    @MuhammadBilal-bc9sg 6 місяців тому

    Is there way to put break between each mail? Few seconds

  • @ashrafulbari4431
    @ashrafulbari4431 Рік тому +1

    Very useful template. I am using this almost everyday. How i can use outlook signature on this vba? please help.

    • @PKAnExcelExpert
      @PKAnExcelExpert  Рік тому

      Please watch the below video:
      ua-cam.com/video/q9kTgTghN2g/v-deo.html

  • @AnubhavIT
    @AnubhavIT 2 місяці тому

    please sent the excel file with source code in free of cost

  • @expertxyt2917
    @expertxyt2917 Місяць тому +1

    Is it paid now??

  • @Ossieosman
    @Ossieosman Рік тому

    How do I send using VBA " Automated Multiple Emails with Multiple Attachments and "From" option" not through Gmail or outlook but yahoo or other mail that does not cut you off.

  • @sanjaytiwari2740
    @sanjaytiwari2740 Рік тому

    Sir muze form16 bhejan hai pan base p kaise karu

  • @expertxyt2917
    @expertxyt2917 Місяць тому

    Hello Sir,
    I am unable to make payment please send me the help.

    • @PKAnExcelExpert
      @PKAnExcelExpert  Місяць тому

      Please email me at info@PK-AnExcelExpert.com

  • @jayvadodariya4074
    @jayvadodariya4074 Рік тому

    Thank you for this
    I need to send multiple emails like for FROM MY APPLE IPAD .
    IS IT POSSIBLE IN IPAD?

  • @v4videozz230
    @v4videozz230 11 місяців тому

    @PK is there any way to multiselect attachments...i means in cell 1 for attachment 1, if i select 2 different files, then the file paths shoud be copied to attachment 1 and to attachment 2 automatically and so on....is there a way to do that..if so can u tell me?

  • @irenexu823
    @irenexu823 Рік тому +1

    Thank you, this is very helpful. However how did you create the "Send Email" and "Get File Path" button? Can you please share, thank you!

    • @PKAnExcelExpert
      @PKAnExcelExpert  Рік тому +1

      Please watch the complete video. You can download the template file also to see the code.
      Download link has been given in video's description box or visit our website WWW.PK-AnExcelExpert.Com

    • @irenexu823
      @irenexu823 Рік тому

      @@PKAnExcelExpert Thank you so much! Sorry I have another question, do you know if we can "bold" and "add link" to part of the text in the "body" column?

  • @NareshKumar-hh8cp
    @NareshKumar-hh8cp Рік тому

    Thnaks PK, lifesaver tool. i want to ask is there a limitation in terms of how many mails we can send i.e how many rows we can use? Also , most important how can I maintain my mail formatting such as bold, italics, colored font since after making changes in the Body cell, I am still getting mail without any formating. Please help.

  • @Sandeesh_Srikantam
    @Sandeesh_Srikantam Рік тому

    I wonder if you can combine this with bulk WhatsApp msgs sheet, that too while replacing outlook with gmail. Please give it a thought.

  • @mayurrajude
    @mayurrajude Рік тому +1

    how we add mail body data like when paste outlook mail body paste Option Is HTML Formate Bitmap Option We want select bitmap

    • @PKAnExcelExpert
      @PKAnExcelExpert  Рік тому

      Please watch below given videos:
      ua-cam.com/video/aD-lo81I5C4/v-deo.html
      ua-cam.com/video/q9kTgTghN2g/v-deo.html

    • @mayurrajude
      @mayurrajude Рік тому

      @@PKAnExcelExpert it's helpful..some region data like MP UP AP KRN BNG when we select one region copy the data range nd to paste it with a new sheet and save sheet also Range Data paste on it outlook bitmap data

    • @mayurrajude
      @mayurrajude Рік тому

      Hye are u there or r u stuck

  • @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??

  • @khushraaz19310
    @khushraaz19310 Рік тому

    Thank you sir for this video, it's working fine but from coloum i used multiple emails but going to from one email which is set as default on outlook, I want to send email from different email, plz suggest

  • @suvroroy5957
    @suvroroy5957 Рік тому

    Thank you very much for your tutorial. I just want to ask how i can rename the regards part? here shows regards Rk. i want to add something more here. Thank you

  • @vaibhavkadam7439
    @vaibhavkadam7439 3 місяці тому

    Please share the download link for free

  • @VS-rh8rq
    @VS-rh8rq 2 роки тому

    Great videos.
    I got a security warning 'Another application trying to gain access Deny.. Allow'
    From excel to outlook
    How do i get rid of it to send bulk mails

  • @SK_ROUTES
    @SK_ROUTES 7 місяців тому

    Can we edit this for windows live mail

  • @icy3779
    @icy3779 Рік тому +1

    Thank you so much for this tutorial. Your explanations are very clear, thank you

  • @4._.9
    @4._.9 2 роки тому +1

    Dear PK: Can you help to demonstrate with Power Automate using the same examples? My office restricts the use of macros. Would greatly appreciate your help. Thank you very much.

    • @PKAnExcelExpert
      @PKAnExcelExpert  2 роки тому

      Great suggestion! I will try to create a video on this topic.

    • @4._.9
      @4._.9 2 роки тому

      @@PKAnExcelExpert Dear PK: Thank you so much. Looking forward to the video. Greatly appreciated.

    • @4._.9
      @4._.9 Рік тому

      Dear PK: I’m wondering if I have missed the video demo using Power Automate. Please help. Thank you so much.

  • @pamyown
    @pamyown Рік тому

    Hi sir, can I know what can be done if we get "Run time error429" while sending the emails?

  • @carylbascon6260
    @carylbascon6260 Рік тому +1

    Thank you very much for this code and tutorial. So helpful!

  • @MurtazaVideos
    @MurtazaVideos 2 роки тому

    Please give option to use Thunderbird or any mail client.. because outlook is giving problems due to Gmail security

  • @alikhaled8960
    @alikhaled8960 2 роки тому

    I want you to explain to us this same workbook but using WhatsApp
    Thank you very much

  • @norasulaiman5907
    @norasulaiman5907 Рік тому

    Great!!! I have been looking for this solution.
    Is there a possibility to send a reminder to those emails ?

  • @muhammadakramassi1476
    @muhammadakramassi1476 2 роки тому +1

    Thanks how we can add the names in the message body please

    • @PKAnExcelExpert
      @PKAnExcelExpert  Рік тому

      Yes, we can add. watch the below videos:
      ua-cam.com/video/QVJDQqYMNdQ/v-deo.html
      ua-cam.com/video/q9kTgTghN2g/v-deo.html

  • @vinayakchowdhary9049
    @vinayakchowdhary9049 8 місяців тому +1

    Thank you so much!! I was able to create one all because of you

  • @ladlavlogs783
    @ladlavlogs783 Рік тому

    Can we turn the practice file into our own file? Like changing the attachment location with a little modification and inserting our own emails that we want to send without changing the macros?

  • @sharminbhai4844
    @sharminbhai4844 Рік тому

    i dont want to add attachment but i have some dynamic content that i want to directly paste in body. How can it be done

  • @andreeacurtis8533
    @andreeacurtis8533 2 роки тому

    Hi PK. Firstly, i cannot thank you enough for your video. The macro works as long as i have my emails displayed. However, when i change msg.Display to msg.Send, it gives me an error message: "Object variable or With block variable not set." Can you please help ?

  • @RNDInfoUpdate
    @RNDInfoUpdate Рік тому

    Why i can't send the email ??

  • @youi3396
    @youi3396 Рік тому

    What if I want to only send multiple information to 1 recipient in a single email?

  • @sandeshpadigela0
    @sandeshpadigela0 Рік тому

    This is a really good trick, thanks for taking the time to share knowledge, I do have a question extent of this. 1) We have employee performance data with multiple details, 2) we get this data week basis 2) We select each employee's data from the validation list 3) We take this screenshot 4) Copy the screenshot in an email 5) Send that to employee - I see challenge to select 20 employees from data validation list and copying screenshot, is there any way we can work on this?

  • @wolfenstein6288
    @wolfenstein6288 Рік тому +1

    Can add date time column to schedule auto email on a specific date and time?

    • @PKAnExcelExpert
      @PKAnExcelExpert  Рік тому +1

      Yes, you can. Please watch the relative below video:
      ua-cam.com/video/4sea6RpUsB4/v-deo.html

    • @wolfenstein6288
      @wolfenstein6288 Рік тому

      Thanks for the link, just want to ask you is it possible to add date/year column in this automatic bulk email sheet also so that each email can be sent on desired date and time?

  • @chintuchin5824
    @chintuchin5824 Рік тому

    I want to reply different email id with different attachment in bulk method

  • @sarendrayadav8195
    @sarendrayadav8195 Рік тому

    How can we add sign in outlook

  • @rickyshukla3746
    @rickyshukla3746 Рік тому

    Sir, what about the end number of pdf required to attach from a folder. How to do that

  • @rrkatheer
    @rrkatheer 2 роки тому

    How to add sc.shots in the body of the email in this scenario ? Please help.

  • @selvarasan.v7246
    @selvarasan.v7246 2 роки тому

    Most usefull but I need lot group pdf file automatically zip file covered based on condition how to writing VBA code I am starting stage in VBA programming languages please can help , please put on one video class

    • @PKAnExcelExpert
      @PKAnExcelExpert  2 роки тому

      Great suggestion! I will try to create a video on this topic.

  • @paulmarinay353
    @paulmarinay353 19 днів тому

    Does this work with web outlook?

  • @katenguyen9409
    @katenguyen9409 2 роки тому +1

    Is it possible for me to have vba code of this video? 😢

    • @PKAnExcelExpert
      @PKAnExcelExpert  2 роки тому +1

      Download link has been given in video's description box or visit our website WWW.PK-AnExcelExpert.Com

    • @katenguyen9409
      @katenguyen9409 2 роки тому

      @@PKAnExcelExpert I found it finally, appreciate it. I become a big fan of your videos already ☺️

  • @sanilkumar3288
    @sanilkumar3288 Рік тому

    Thank u so much for this vedio.This is very helpful fo me.i have one request make one vedio the same mail format how to add signature in outlook .Thanks

    • @PKAnExcelExpert
      @PKAnExcelExpert  Рік тому

      Please watch below given video:
      ua-cam.com/video/q9kTgTghN2g/v-deo.html

  • @jlvfr
    @jlvfr Рік тому

    An excelent solution and idiot-proof to use. Thank you very much! I tried to download the zip file, but it seems to be corrupted, so I used your other, more basic file. Life saver!

  • @bpissolati
    @bpissolati Рік тому +1

    Greetings from Brazil! It is so useful!!!!

  • @ajinkyachavan4025
    @ajinkyachavan4025 2 роки тому

    Please Make a video how to send whatssup messages at a single click

  • @Swayog-satsang
    @Swayog-satsang 2 роки тому

    Superb, Tons of Thanks, I had followed your older video of Project Issue Tracker and working accordingly my requirement, Sir can you guide how to find out difference of two large size database with multiple column by Vlookup using VBA. AS I need to compare two column from different workbook and find out Pending Records to send reminder email. If you can share your email ID or WA contact I will share my datafiles to explain properly. Thank you so much

    • @PKAnExcelExpert
      @PKAnExcelExpert  2 роки тому +1

      I got your point. I will try to create a video on this topic.

    • @Swayog-satsang
      @Swayog-satsang 2 роки тому

      @@PKAnExcelExpert Thank you so much sir for considering my point.

  • @KevinCastillousac
    @KevinCastillousac 2 роки тому +1

    You are a genius. Thanks for share.

  • @epicgsmerx
    @epicgsmerx Рік тому

    Sir, can I get the macro coding pls

    • @epicgsmerx
      @epicgsmerx Рік тому

      This would be of much help

  • @pavithras4085
    @pavithras4085 Рік тому

    Thank you very much for this code and video
    Very helpful and detailed explanation
    Can you please let me know how to show msgbox as "Email already sent" If the status is done?

  • @vishal332
    @vishal332 Рік тому +1

    You are the boss of VBA coding

  • @devangthakkar6847
    @devangthakkar6847 2 роки тому +1

    Superb dear Sir....... Thanks for update.

  • @kartiksaini2464
    @kartiksaini2464 Рік тому

    This video is really helpful. Kindly help me with How to add a table in the body of this Email?

    • @PKAnExcelExpert
      @PKAnExcelExpert  Рік тому

      Please watch the below video:
      ua-cam.com/video/aD-lo81I5C4/v-deo.html

  • @rg08581
    @rg08581 Рік тому

    Hi sir can we do some formatting in the email body.. like underline, bold, italic, font colour etc

    • @PKAnExcelExpert
      @PKAnExcelExpert  Рік тому +1

      Please watch the below video:
      ua-cam.com/video/q9kTgTghN2g/v-deo.html

  • @Gadg3t_01
    @Gadg3t_01 2 роки тому

    Brilliant - I tried doing PowerAutomate but the pdf's got corrupted which was pointless - this worked - thanks a bunch.

  • @paramichowdary2419
    @paramichowdary2419 Рік тому

    Hi, Nice,
    Can you send me this file?

  • @sadsudathp
    @sadsudathp 2 роки тому

    Tks Friend. May you be able to create even better!

  • @internetart6147
    @internetart6147 2 роки тому

    hello Sir, is the website down
    it is not opening up and i cannot download the file for practice

    • @PKAnExcelExpert
      @PKAnExcelExpert  2 роки тому

      It is working. Please check it now
      www.pk-anexcelexpert.com/automated-multiple-emails-with-multiple-attachments-and-from-option/

  • @ajith7936
    @ajith7936 Рік тому

    From address code not working please share code

  • @GovindGaganSai
    @GovindGaganSai Рік тому

    Can you please show how to add signatures also in the mail 0:11

    • @PKAnExcelExpert
      @PKAnExcelExpert  Рік тому

      Please watch below video:
      ua-cam.com/video/q9kTgTghN2g/v-deo.html

  • @akki7336
    @akki7336 2 роки тому

    can you make same vba excel instead of Outlook i want for gmail??

    • @PKAnExcelExpert
      @PKAnExcelExpert  2 роки тому +1

      Great suggestion! I will try to create a video on this topic.

  • @muhammadakramassi1476
    @muhammadakramassi1476 2 роки тому

    If you can make or guide how to make the text body dynamic that will be great please

    • @PKAnExcelExpert
      @PKAnExcelExpert  Рік тому

      Please watch below video will help you
      ua-cam.com/video/q9kTgTghN2g/v-deo.html