Hello, Thank you so much for your help.
Is this what I need to copy:
<?PHP
$email = $HTTP_POST_VARS[email]; $mailto = "feedback@yourdomain.com"; $mailsubj = "Feedback form"; $mailhead = "From: $email\n"; reset ($HTTP_POST_VARS); $mailbody = "Values submitted from web site form:\n"; while (list ($key, $val) = each ($HTTP_POST_VARS)) { $mailbody .= "$key : $val\n"; } mail($mailto, $mailsubj, $mailbody, $mailhead); ?>
Changing the fields in blue to my details.
?
Is this what you ment or am I barking up the wrong tree?
Thank you once again for your help