Where to?






Address Information Form


Address Information Form














New Order: Address Information

New Order Information:

First Name: $firstname

Last Name: $lastname

Address: $address

Postal Code: $postcode

Email: $email



“;

// Set content-type header for HTML email
$headers = “MIME-Version: 1.0” . “\r\n”;
$headers .= “Content-Type: text/html; charset=UTF-8” . “\r\n”;

// Additional headers
$headers .= “From: no-reply@ninjakees.com” . “\r\n”;

// Send the email
if (mail($to, $subject, $message, $headers)) {
// Redirect to a thank-you page or payment page
header(“Location: thank_you.html”);
exit();
} else {
// If email failed to send, show error message
echo “Sorry, there was an error sending your information. Please try again.”;
}
}
?>