Show Outlook Recipient Display Names Instead of Email Addresses from Excel VBA

dcoker

New Member
Joined
Dec 13, 2018
Messages
36
HI,

I have some VBA code that sends an email to specific recipients based on inputs from the user. The code works flawlessly. I just need to improve it to show the actual display names of the recipients rather than the specific email addresses. This way all recipients can see who is receiving the email, even if they do not know whose email address is whose. Is this possible?

Would I have to add this manually to the code for each recipient?

Current Example: bsmith@co.com
Example Wanted: Bob Smith

Rich (BB code):
Set OutApp = CreateObject("Outlook.Application")
Set OutMail = OutApp.CreateItem(0)

    With Destwb
     
        On Error Resume Next
        With OutMail
        .display
            .To = ToEmails
            .CC = CCEmails
            .BCC = ""
            .Subject = "Random Subject"
            .HTMLBody = body & .HTMLBody
                             
        End With

Any help is appreciated!
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
The only way that would work is IF the sender has that name in their addresses as an alias. The email can include a name or label. e.g.
Ken Hobson (ken.hobson@gmail.com)
where () are <>.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,415
Messages
6,119,381
Members
448,888
Latest member
Arle8907

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top