I need to do something relatively simple, I don't know much about PHP but I have created a few forms that mail in simple text, I want the emails to be received as HTML so that I can use tables. That's all, can anyone help?
Dr Zonic
Check out the mail()-function in PHP and make sure your try it with some "simple" data like :
<?php $ok = mail('bugates@macrohard.com', 'Testing testing', 'This is MY email okay?', 'From: me@place.com; Reply-To: noone@okay.com'); echo "ok |$ok|"; ?>
That should do it ... then expand it to fit your needs.
mail($recipient, $subject, $content, "From: $email\r\nContent-Type: text/html")
Will this make the filled out form go to the recipients?