Skip to content

Instantly share code, notes, and snippets.

@miwebguy
Last active March 11, 2024 15:31
Show Gist options
  • Save miwebguy/15ef1d874088b44d87afbd32623058d2 to your computer and use it in GitHub Desktop.
Save miwebguy/15ef1d874088b44d87afbd32623058d2 to your computer and use it in GitHub Desktop.
Show External Email Address in Outlook
To add a full-email field:
Click View > Add Columns
In the Show Columns dialog do the following:
Click New Column button
In the New Column dialog specify a name for the new column
Choose "Formula" for "Type"
Paste this formula into the "Formula" box
IIf(InStr([SearchFromEmail],"@")=0,"INTERNAL: ",IIf(From=[SearchFromEmail],"",[SearchFromEmail]+": "))+[From]
Click OK to return to the "Show Columns" dialog
Select the new column and move its place in the list
Click OK to close this dialog.
The senders full email addresses will now be displayed in the mailing list.
https://superuser.com/questions/1697428/outlook-365-display-full-email-address-of-senders-and-recipients-within-organiz/1697442#1697442
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment