Social Media Land
We're Social, we like to talk. Check us out on your favorite Social Media Platform !!!
Merchant Account Application
if ((isset($HTTP_POST_VARS["op"])) && ($HTTP_POST_VARS["op"] == "2")) {
$email = $HTTP_POST_VARS['email'];
$subject = "Merchant Account form from $email";
foreach ($HTTP_POST_VARS as $key => $value) {
if (($key != "op") && ($key != "Submit")) { $info .= "$key: $value\n"; }
}
$body = "Merchant Account form submitted. Details are below:\n";
$body .= $info;
$headers = "From: $name <$email>\r\n";
mail("sales@gazungle.com", $subject, $body, $headers);
?>
Thank you. A Gazungle representative will contact you shortly to review your application.
} else { ?>
Simply complete the fields below to get your application started and a Gazungle representative will contact you to review and complete your application.
} ?>