| Question : | Is it possible to send HTML mail with php?
| | Answer : | Yes it is possible if you add a HTML content type to your mail header, you can do it like this:
mail($recipient, $subject, $message, From: $sender\nContent-Type: text/html; charset=iso-8859-1);
We suggest you read the manual page on the subject at http://dk.php.net/manual/en/function.mail.php
| | |