On one site, the site is on iso-8859-1, database is on latin1
I send the email using the header
$headers .= "Content-Type: text/html; charset=\"iso-8859-1\"\n";
I can read these emails fine.
Plus, when I receive email which is either on iso-8859-1 or utf8 from different senders, I can read all these "úőűáóüöí" characters in the emails well.
But some email recipients use utf character set at the client's side said they can not read the "úőűáóüöí" sent from the php site on iso-8859-1.
My questions are
1) what is their desktop computer set up problem? what they can do to be able to read "úőűáóüöí" in emails of charset "iso-8859-1" or "utf8" (I can read both)?
2) if my database is on utf8, my web page is utf8 and the email that my php script sent out is on utf8, will some other clients whose desktop are on iso-8859-1 will complain too that they cannot read "úőűáóüöí" in emails which is utf8 charset?
in simple words, email charset either "iso-8859-1" or "utf8", none of them will be able to satisfy all the recipients, in terms of reading "úőűáóüöí", due to their desktop set up are different? if that is the case, what is your solution?
or "utf8" will be able to satisfy all the recipients?
Thanks!