|
Posted by Manuel Lemos on 01/06/05 20:35
Hello,
on 01/06/2005 08:16 AM Hugo Tavares said the following:
> I'm new (very new) to php.
>
> I'm making a simple srcipt wich sends and email from a form.
>
> My problem is tha special characters like ç,á,à,é, etc don't work.
>
> Can anyone help me?
Any 8 bit characters in the message have to be encoded in the body using
quoted-printable encoding or with q-encoding in the headers.
If you do not know how to compose messages with these encodings, you may
want to try the MIME message class for composing and sending e-mail
messages that can encode your message headers and body parts properly.
It even comes with an example to demonstrate that:
http://www.phpclasses.org/mimemessage
--
Regards,
Manuel Lemos
PHP Classes - Free ready to use OOP components written in PHP
http://www.phpclasses.org/
PHP Reviews - Reviews of PHP books and other products
http://www.phpclasses.org/reviews/
Metastorage - Data object relational mapping layer generator
http://www.meta-language.net/metastorage.html
[Back to original message]
|