So I am reading an email in PowerShell using Get-IMAP but the encoding is different from when then email is sent to when I read it in Powershell.
The email is sent like
Job Title: Administración#
but when I go to read the string of the body back it looks like this,
Job Title: Administraci=F3n#
$body = Get-IMAP -Credential $PeopleHubOffice365ConnectorAccountCredential -server "outlook.office365.com" -port "993" -ssl "implicit" -view $message.id -Timeout 60
I want to know how I can keep the same encoding as the email was sent so in all cases of special characters I don't get this problem. Thanks