Hello BV Friends,
Please I need help regarding autoresponder. I follow instructions from our
Great Lt. General Navaldesign in my website I have 2 forms and I’d like
Make the some in both for reservation page and contact us page.
I put this code in reservation.php and html page
// Autoresponder
$mailto = $email;
$mailsubj = "Copy of the information you Sumbitted";
$mailhead = " From: Mornington Motel\n";
reset ($HTTP_POST_VARS);
$mailbody = " Thank you for tour Submission. This is the info you have submitted:\n";
while (list ($key, $val) = each ($HTTP_POST_VARS))
{
if ($key!="submit")
{
$mailbody .= "$key : $val\n";
}
}
mailbody .= "This is an automatically created message. If an answer is required, we will back to you ASAP.\n";
mail($mailto, $mailsubj, $mailbody, $mailhead);
Please, can you help me with this problem
Thanks you so much for your support
Regards,
Zlatko
www.mornington-motel.com
Please I need help regarding autoresponder. I follow instructions from our
Great Lt. General Navaldesign in my website I have 2 forms and I’d like
Make the some in both for reservation page and contact us page.
I put this code in reservation.php and html page
// Autoresponder
$mailto = $email;
$mailsubj = "Copy of the information you Sumbitted";
$mailhead = " From: Mornington Motel\n";
reset ($HTTP_POST_VARS);
$mailbody = " Thank you for tour Submission. This is the info you have submitted:\n";
while (list ($key, $val) = each ($HTTP_POST_VARS))
{
if ($key!="submit")
{
$mailbody .= "$key : $val\n";
}
}
mailbody .= "This is an automatically created message. If an answer is required, we will back to you ASAP.\n";
mail($mailto, $mailsubj, $mailbody, $mailhead);
Please, can you help me with this problem
Thanks you so much for your support
Regards,
Zlatko
www.mornington-motel.com
Comment