php - problems showing the right special characters in email -


i have php file generates automatic email. inside email, there special characters (ä,ö,ü) don't show correctly. replace question mark.

can me in this? can change inside php code?

this php file: click here

thats how email looks

set email header utf8 charset

mail($to,$subject,utf8_decode($message),$from."\ncontent-type: text/plain; charset=utf-8\ncontent-transfer-encoding: 8bit\n"); 

this solve problem.

this has been posted on stack overflow on below link.

php mail special characters utf8

please try search post before post something.

there lot of content available here on stackoverflow.


Comments

Popular posts from this blog

android - Why am I getting the message 'Youractivity.java is not an activity subclass or alias' -

python - How do I create a list index that loops through integers in another list -

c# - “System.Security.Cryptography.CryptographicException: Keyset does not exist” when reading private key from remote machine -