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' -

Making Empty C++ Project: General exception (Exception from HRESULT:0x80131500) Visual Studio Community 2015 -

How to fix java warning for "The value of the local variable is not used " -