Have you tried placing a MIME type header on the e-mail message?
Assuming that you are using the mail() function of PHP, you can do this by entering
Content-Type: text/html; charset=iso-8859-15 into the 4th argument. Example:
Code:
mail('your@email.com', 'Subject', 'Message', 'Content-Type: text/html; charset=iso-8859-15');
Are you using a different method of sending the e-mail?