I am forwarding email from server to php file with script. when I get any special chars, I have string in format which is given in screen shot.
I am doing all in PHP.
I am forwarding email from server to php file with script. when I get any special chars, I have string in format which is given in screen shot.
I am doing all in PHP.
That's UTF-8 encoded as Quoted-Printable.
You can use mb_detect_encoding
function from php.
You can also retrieve data from a file to check the encoding. (like your stored emails).