PHP Mailform with HTML Support

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
tsm4781
Forum Commoner
Posts: 38
Joined: Wed Jul 09, 2003 7:17 pm

PHP Mailform with HTML Support

Post by tsm4781 »

I have been looking around trying to find a simple mailform that allows for HTML email generations. Does anyone have any suggestions on a good starter script that might support these features?
Bizwala
Forum Newbie
Posts: 12
Joined: Tue Sep 09, 2003 12:10 pm
Location: Las Vegas, Nevada

Post by Bizwala »

php mail() can generate HTML

$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";

just include html in your email body.
Post Reply