Protege wrote:Remember: before you go adding that to a 'live' site it needs some security. If it gets abused then you're up a certain creek without a paddle.

Exactly, some use forms like this to send out spam. I'm not very good at e-mail security and what's possible to do with email-injections in forms. But this is what I use, are there anything I've missed?
[php]<?php
$message = str_replace(array("","Content-Type:","bcc:","cc:","MIME-Version:",
"Content-Transfer-Encoding:","%"),"",$message);
?>[/php]