+ Reply to Thread
Results 1 to 15 of 15

Bulk Email and Individual email from Excel File to Outlook

  1. #1
    Forum Contributor
    Join Date
    05-26-2016
    Location
    India
    MS-Off Ver
    Microsoft 2021
    Posts
    324

    Bulk Email and Individual email from Excel File to Outlook

    Hello

    I hope everyone is doing well .... I am trying to send bulk email from excel sheet to Outlook but I am getting formatting issues in body and also some addition fields are not added in body
    My excel macro file is attached. Also a doc file attached for email body format. this format is fixed for all recipients just ID and Score changed in body.

    Here are some excel file details
    ID available in Column C
    Score% Column BQ
    Suggestions in Column BR

    my Macro code is as below

    Please Login or Register  to view this content.
    Attached Files Attached Files

  2. #2
    Forum Expert Logit's Avatar
    Join Date
    12-23-2012
    Location
    North Carolina
    MS-Off Ver
    Excel 2019 Professional Plus - 2007 Enterprise
    Posts
    7,432

    Re: Bulk Email and Individual email from Excel File to Outlook

    .
    See of this works for you ...


    Please Login or Register  to view this content.
    Attached Files Attached Files

  3. #3
    Forum Expert dangelor's Avatar
    Join Date
    09-06-2011
    Location
    Indiana, USA
    MS-Off Ver
    MS365 V.2406
    Posts
    2,310

    Re: Bulk Email and Individual email from Excel File to Outlook

    Added the template to a worksheet...
    Please Login or Register  to view this content.
    Attached Files Attached Files

  4. #4
    Forum Contributor
    Join Date
    05-26-2016
    Location
    India
    MS-Off Ver
    Microsoft 2021
    Posts
    324

    Re: Bulk Email and Individual email from Excel File to Outlook

    [QUOTE=dangelor;5472175]Added the template to a worksheet...[CODE]Sub Send_Mails()

    Some formatting issue found. image aatached .
    Attached Images Attached Images

  5. #5
    Forum Expert dangelor's Avatar
    Join Date
    09-06-2011
    Location
    Indiana, USA
    MS-Off Ver
    MS365 V.2406
    Posts
    2,310

    Re: Bulk Email and Individual email from Excel File to Outlook

    Try this version of code and template...
    Please Login or Register  to view this content.
    Attached Files Attached Files

  6. #6
    Forum Contributor
    Join Date
    05-26-2016
    Location
    India
    MS-Off Ver
    Microsoft 2021
    Posts
    324

    Re: Bulk Email and Individual email from Excel File to Outlook

    Quote Originally Posted by dangelor View Post
    Try this version of code and template...[CODE]Option Explicit
    Sorry for the late response but due to some covid issue i was stuck somewhere, as it is working fine for sending emails to all mentioned recipients in the sheet ....
    but What if I want to only send to selected recipients or a single recipient ... like placement of a button to every single record to send email . or select from a list to send email to select recipetns .

  7. #7
    Forum Expert dangelor's Avatar
    Join Date
    09-06-2011
    Location
    Indiana, USA
    MS-Off Ver
    MS365 V.2406
    Posts
    2,310

    Re: Bulk Email and Individual email from Excel File to Outlook

    I would set up a range that has a list of email addresses, i.e.,Sheet1.Range("A1:A10") and use this for the TO string.
    Please Login or Register  to view this content.
    It will ignore blank cells in the range.

  8. #8
    Forum Contributor
    Join Date
    05-26-2016
    Location
    India
    MS-Off Ver
    Microsoft 2021
    Posts
    324

    Re: Bulk Email and Individual email from Excel File to Outlook

    Quote Originally Posted by dangelor View Post
    I would set up a range that has a list of email addresses, i.e.,Sheet1.Range("A1:A10") and use this for the TO string.
    Please Login or Register  to view this content.
    It will ignore blank cells in the range.
    where should I place this code in above mentioned code
    replace this line to suggested code
    Please Login or Register  to view this content.

  9. #9
    Forum Expert dangelor's Avatar
    Join Date
    09-06-2011
    Location
    Indiana, USA
    MS-Off Ver
    MS365 V.2406
    Posts
    2,310

    Re: Bulk Email and Individual email from Excel File to Outlook

    After you create the range, yes.

  10. #10
    Forum Contributor
    Join Date
    05-26-2016
    Location
    India
    MS-Off Ver
    Microsoft 2021
    Posts
    324

    Re: Bulk Email and Individual email from Excel File to Outlook

    I tried it but not working might be I am writing wrong range for it . can you please adjust it

  11. #11
    Forum Expert dangelor's Avatar
    Join Date
    09-06-2011
    Location
    Indiana, USA
    MS-Off Ver
    MS365 V.2406
    Posts
    2,310

    Re: Bulk Email and Individual email from Excel File to Outlook

    What's the name of the worksheet and the range address that holds your email addresses?

  12. #12
    Forum Contributor
    Join Date
    05-26-2016
    Location
    India
    MS-Off Ver
    Microsoft 2021
    Posts
    324

    Re: Bulk Email and Individual email from Excel File to Outlook

    Quote Originally Posted by dangelor View Post
    What's the name of the worksheet and the range address that holds your email addresses?
    I am using the file from post # 5 and sheet is Send_Mails

  13. #13
    Forum Expert dangelor's Avatar
    Join Date
    09-06-2011
    Location
    Indiana, USA
    MS-Off Ver
    MS365 V.2406
    Posts
    2,310

    Re: Bulk Email and Individual email from Excel File to Outlook

    I think I'm misunderstanding what it is you're trying to accomplish.

    The code in #5, sends emails to every address in the list on the Send_Mails worksheet. How do you populate that list?

  14. #14
    Forum Contributor
    Join Date
    05-26-2016
    Location
    India
    MS-Off Ver
    Microsoft 2021
    Posts
    324

    Re: Bulk Email and Individual email from Excel File to Outlook

    Actually, I want to send multiple emails at once and now I am thinking to send email to only select persons. like I want to send email to only john then I go to john address and click on send email button.

    I am inserting manually email address and my main email data is available in QA Consolidated sheet
    Column C , BQ and BR are the main columns for email template.



    Quote Originally Posted by dangelor View Post
    I think I'm misunderstanding what it is you're trying to accomplish.

    The code in #5, sends emails to every address in the list on the Send_Mails worksheet. How do you populate that list?

  15. #15
    Forum Expert dangelor's Avatar
    Join Date
    09-06-2011
    Location
    Indiana, USA
    MS-Off Ver
    MS365 V.2406
    Posts
    2,310

    Re: Bulk Email and Individual email from Excel File to Outlook

    To email select people you would, at the least, need to include email addresses to the database and devise a simple way to differentiate those people in the list.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Excel VBA Bulk Email with date and time email sent
    By ClaudiaRovastino in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-04-2020, 07:54 AM
  2. [SOLVED] how to check bulk email address is correct or not in excel file
    By johnquazi in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 03-23-2018, 12:17 AM
  3. [SOLVED] Need to send bulk Email from excel file
    By Sanjibghosh in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 03-12-2018, 07:36 AM
  4. vba pull data from outlook body of email through email or subject of mail into excel
    By breadwinner in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 03-01-2014, 04:37 AM
  5. Bulk email details from outlook
    By mvinay in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 12-14-2013, 03:40 AM
  6. Replies: 1
    Last Post: 06-30-2013, 10:55 AM
  7. How to parse data in Outlook email using HTML version of email back to excel
    By bnasty in forum Excel Programming / VBA / Macros
    Replies: 21
    Last Post: 10-31-2012, 02:54 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1