I have a form where Spanish can be submitted and using PHP, I send an email with the data. Unfortunately, accent marks are completely upside down when they receive email.
If I send the following:
Accent Testing Γ‘ Γ© i Γ³ ΓΊ p
I get the following in the body of the letter ...
Accent Testing ΓΓ Γ Β© ΓΒ³ ΓΒΊ Γ Β±
The email processing code simply puts the $ _POST information directly into the body of the email. I assume I need htmlentities () or something, but I tried and nothing works ...
I will also need to put the same data into the MySQL database and retrieve it later. What do I need to know when I do this?
Thank! Drew