Thanks for that, yes I'm more confused...
I've searched the web (all search engines) and can't really come up with an answer...
So what you are saying is something like this?
$email =
'reservations@somewhere.com;
$subject = $HTTP_POST_VARS['subject'];
$message = $HTTP_POST_VARS['message'];
$from = $HTTP_POST_VARS['from'];
$name = $HTTP_POST_VARS['name'];
$arrival_month = $HTTP_POST_VARS['arrival_month'];
$arrival_year = $HTTP_POST_VARS['arrival_year'];
$departure_day = $HTTP_POST_VARS['departure_day'];
$departure_month = $HTTP_POST_VARS['departure_month'];
$departure_year = $HTTP_POST_VARS['departure_year'];
elseif (mail($subject,$from,$name,$message,$arrival_day,\n$email,\nn$arrival_month,\nnn$arrival_year,\nnnn$departure_day,\nnnnn$departure_month,\nnnnnn$departure_year,)) {
Or have I lost the plot?
Ian