Trademark Registrations Canada - Search Form
if(!isset($_POST['submit'])) {
if(isset($html_output)) {
echo $html_output;
}
?>
} else {
$ContactEmail = "mark@trademarkregistrations.ca";
//$ContactEmail = "daryl@reboot.ca";
$headers = "From: Trademark Registrations Canada
\r\n".
"Reply-To: \r\n".
"X-Mailer: Reboot IMT - PHP/".phpversion();
$Subject = "TrademarkRegistrations.ca: Trademark Form";
$formemailbody = "A. Applicant Contact Information\r\n".
"Name: ".$_POST['FormName']."\r\n".
"Address: ".$_POST['FormAddress']."\r\n".
"City or Location: ".$_POST['FormLocation']."\r\n".
"Postal Code: ".$_POST['FormPostal']."\r\n".
"Telephone: ".$_POST['FormTelephone']."\r\n".
"Fax: ".$_POST['FormFax']."\r\n".
"Email: ".$_POST['FormEmail']."\r\n".
"Name of Contact: ".$_POST['FormContact']."\r\n\r\n".
"B. Trademark\r\n".
"The trademark is the following word(s): ".$_POST['FormTMWords']."\r\n\r\n".
"C. Products and Services\r\n".
"Products: ".$_POST['FormProducts']."\r\n".
"Services: ".$_POST['FormServices']."\r\n".
"TM First Use: ".$_POST['FormTMDate']."\r\n".
"Intend Products: ".$_POST['FormIntendProducts']."\r\n".
"Intend Services: ".$_POST['FormIntendServices']."\r\n\r\n".
"D. Prior Trademark Use\r\n".
"Non-Original TM: ".$_POST['First_Use']."\r\n".
"Additional Comments:\r\n".
$_POST['FormComments']."\r\n\r\n".
"Post Count: ".count($_POST);
mail($ContactEmail, $Subject, $formemailbody, $headers);
?>
}
include("inc/footer.php");
?>