- #OFFICE 365 CONTACTS DISPLAY NAME HOW TO#
- #OFFICE 365 CONTACTS DISPLAY NAME FULL#
- #OFFICE 365 CONTACTS DISPLAY NAME SOFTWARE#
This may include self-help support or assisted support.
#OFFICE 365 CONTACTS DISPLAY NAME SOFTWARE#
OResponse.Body = SentFrom & vbCrLf & oResponse.Where do you contact Microsoft Support, if you face problems relating to Windows, Office, or any other Microsoft software or service? This post will list down some useful resource links, phone numbers, and email ID, from where you can receive help from Microsoft.īefore you begin, I want you to know that this site is owned by me and is in no way affiliated with Microsoft. Private Sub oItem_Forward(ByVal Response As Object, Cancel As Boolean)ĭim sSentTo As String, SentFrom As String This line gets the proper DL name/address to use: Debug.Print "To:", sSentTo
It assumes the message to the DL is From the person whose address you need. This should work to watch the Forward action. Rather than using the itemsend, it might be better to use a macro that looks at the Forward action.
#OFFICE 365 CONTACTS DISPLAY NAME HOW TO#
More information as well as screenshots are at How to use the VBA Editor. (Click within the code, Select All using Ctrl+A, Ctrl+C to copy, Ctrl+V to paste.)
If Outlook tells you it needs to be restarted, close and reopen Outlook. In Outlook 2007 and older, it’s at Tools, Macro Security.
To check your macro security in Outlook 2010 or above, go to File, Options, Trust Center and open Trust Center Settings, and change the Macro Settings. ' if the entry is already an address, skip itįirst: You will need macro security set to low during testing. Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) It's completely automatic - as soon as you press Send, the display names are changed to the email address.ĭecember 4 2018: Updated macro to check for To, CC, and BCC and put the addresses in the correct field. If the recipient entry contains an sign, it's skipped (remove the If/End If lines if you use signs in display names). Before the message is sent, the macro changes display names to the underlying email address. This specific problem is easy to solve using an ItemSend macro. While newer versions of Outlook display the email address when you are composing mail, when the message is sent, only the display name is visible.
#OFFICE 365 CONTACTS DISPLAY NAME FULL#
Newer versions of Outlook will use Full Name as the display name format in Contacts but senders almost always use their name as the display name and don't include the email address. Outlook uses the display name in the To/CC/BCC fields, getting it from the message you are replying to, or from the Email Display Name field in Contacts.