<?php
if (!isset($_POST['submit_form'])):
?>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
<form action="<?=$HTTP_SERVER_VARS['PHP_SELF']?>" method="post">
Name:<input type="text" name="newfname" size="35" value=""><br>

Email:<input type="text" name="newemail" size="35" value=""><br>
<input type="submit" name="submit_form" value="">
</form>
</body>
</html>
<?php else:
$newfname = $_POST['newfname'];
$newemail = $_POST['newemail'];
$qc = $_POST['qc'];
// Send html autoresponder email or whatever
$to = $newemail;
$subject = "Dear $newfname, thank you for subscribing";
$message = "
<html>
<head>
<title></title>
</head>
<body>
<font style=\"font-family:tahoma, arial, verdana;font-size:10pt\">
Dear $newfname,
<p>Thank you for subscribing. You will receive the Marketing Tips Newsletter with original in-depth articles every 2 weeks.</p>
<p>Best Regards,</p>
<p>Herman Drost<br>
www.iSiteBuild.com</br>

</font>
</body>
</html>
";
$headers  = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .="From:my@email.com <info@isitebuild.com>\r\n";
mail($to, $subject, $message, $headers);
// Done sending autoresponder
$date = date("F j, Y, g:i a" );
// Notify the new submission to the administrator
$to = "info@isitebuild.com";
$subject = "Subscribe Me please";
$message = "
The following submission has been received.
Name: $newfname $newlname
Email: $newemail
$qc

Form submitted on $date
";
$header = "From:My Newsletter <info@isitebuild.com>";
mail($to, $subject, $message, $header);
// Done notifying to administrator
?>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
<font style="font-family:tahoma, arial, verdana;font-size:10pt">
Dear <?=$newfname?>,
<p>Thank you for subscribing. You will receive the Marketing Tips Newsletter with original in-depth articles every 2 weeks.</p>
<p>Best Regards,</p>
<p>Herman Drost<br>
www.iSiteBuild.com


</font>
</body>
</html>
<?php endif; ?>

