Hello
I am a totally newcomer to php, I was wondering if anyone could help me with passing variables from a html form to a php script to send mail
Cheers
Mike
Assuming that you have the follwing variables in your form:
$to, $from, $message, $subject
and the name of yoour submit button is sendEmail,
if(isset($sendEmail)){
mail($to, $subject, $message, $reply, $from); }
Should this be put within another page that is then called from the HTML script??