Peter Lauri schrieb:
How can I send UTF-8 mails with the mail() function. Right now I am doing:

mail('[EMAIL PROTECTED]', 'Subject', 'Message', "From: The Sender <[EMAIL PROTECTED]> \n" . "Content-Type: text/plain; charset=utf-8 \n" .
"Content-Transfer-Encoding: 7bit\n\n")

The message is being sent, but the UTF-8 specific characters are not being
presented. Is there any fix on this?

The messages etc are coming from a form. Is it possible to set the charset
for the form?

/Peter
$bodytext = utf8_encode($bodytext);
--
Smileys rule (cX.x)C --o(^_^o)
Dance for me! ^(^_^)o (o^_^)o o(^_^)^ o(^_^o)

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to