Air Freight – Request A Quotation
[insert_php]
$Email = $_POST[‘Email’];
$Goods = $_POST[‘Goods’];
$Weight = $_POST[‘Weight’];
$Temperature = $_POST[‘Temperature’];
$Airport = $_POST[‘Airport’];
$Comments = $_POST[‘Comments’];
$to= “aaron@reefer90s.co.uk”;
$subject= “Air Freight Request For Quotation”;
$body= “This is a Customer message received from Reefer 90s – Airfreight – Request a Quote.\n \n The Following data was submitted: \n\n Email = $Email \n Goods Description = $Goods \n Total Weight (Kgs) = $Weight \n Carriage Temperature = $Temperature \n Destination Airport = $Airport \n General Comments = $Comments”;
mail ($to,$subject,$body);
echo ”
Success!
“;
echo ”
Thank you for your enquiry submission
“;
echo ”
A member of our Air Freight team will come back to you shortly with your quote
“;
[/insert_php]