php-ews
php-ews copied to clipboard
Euro currency symbol in password not working
Hi,
I am trying to log in without success with a user who has a password with special characters, in particular the Euro currency symbol.
I specify that the connection works perfectly when there are no special characters in the password.
Also, I tried to convert the password to "UTF-8" or "Windows-1252" but it still doesn't work.
$api = MailAPI::withUsernameAndPassword(
$host,
$login,
mb_convert_encoding($login, "Windows-1252", "UTF-8")
);
Do you know how I could fix this bug?
Thank you.