Do you want to know how to send an e-mail or how to setup a mailing list? (you should use white listed SMTP servers for a mailing list) If you are just sending yourself e-mails, then you can use something like this: <?php $to = 'me@myDomain.co.uk'; $from = 'feedback@myDomain.co.uk'; $subject = 'Feedback from Site'; $message = 'Form / Feedback data here'; $headers = 'From: ' . $from; mail($to, $subject, $message, $headers) || die('Mail failed to send'); echo 'Mail sent ok'; ?> PHP: