When sending an email using PowerShell's Send-MailMessage -From 'Some person <[email protected]>
Outlook will display the sender in the format of Some Person <[email protected]>
yet when Outlook is used to send the email, the sender is displayed simply as Some Person
Is there any way to get the Send-MailMessage
cmdlet to format the mail message so Outlook will only display the Name and not the Name + Email address?
Searching around on this topic returns plenty of "How to use Send-MailMessage" or answers using .net
but doesn't really address this question directly.