Jump to content

shinteyz

New Members
  • Posts

    2
  • Joined

  • Last visited

shinteyz's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hey it works now. but they are all on the same line. What if I want them each on a new line? Thanks much
  2. My form is located on: http://dhonveliparadise.com/book-adaaran-club-rannalhi.html And heres the php code thats used to send the email: <?php $name = $_POST['name']; $email = $_POST['email']; $rooms = $_POST['rooms']; $adults = $_POST['adults']; $children = $_POST['children']; $meal = $_POST['meal']; $arrival = $_POST['arrival']; $dept = $_POST['dept']; $country = $_POST['country']; $number = $_POST['number']; $message = $_POST['message']; $to = "champareyz@live.com"; $headers = "From: ".$email. "\r\n"; $subject = "Submitted application"; $msg = $name . " has sumitted a form!\r\n"; $msg .= "Pwd: " . $rooms . "\r\n"; $msg .= "Pwd: " . $adults $children $meals $arrival $dept $country $number $message . "\r\n"; $msg .= "email address: " . $email . "\r\n"; mail($to, $subject, $msg, $headers); echo ("Mail processed."); ?> Earlier I was receiving emails alright, but they were blank. And since I added method=post to my form, I am just not receving email at all!
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.