"; $numerr = 0; // reset if re-posting form if (empty($_POST["name"])) { $nameErr = "Name is required"; $numerr++; } else { $name = test_input($_POST["name"]); // check if name only contains letters and whitespace if (!preg_match("/^[a-zA-Z-' ]*$/",$name)) { $nameErr = "Only letters and white space allowed"; $numerr++; } } if (empty($_POST["email"])) { $emailErr = "Email is required"; $numerr++; } else { $email = test_input($_POST["email"]); // check if e-mail address is well-formed if (!filter_var($email, FILTER_VALIDATE_EMAIL)) { $emailErr = "Invalid email format"; $numerr++; } } if (empty($_POST["website"])) { $website = ""; // allowed to be empty } else { $website = test_input($_POST["website"]); // check if URL address syntax is valid (this regular expression also allows dashes in the URL) if (!preg_match("/\b(?:(?:https?|ftp):\/\/|www\.)[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%=~_|]/i",$website)) { $websiteErr = "Ensure URL starts www. or https://)"; $numerr++; } } if (empty($_POST["level"])) { $levelErr = "Level is required (Gold, Silver, Bronze)"; $numerr++; } else { $level = test_input($_POST["level"]); $level = substr($level,0,1); $level = ucfirst($level); if ($level <> "G" && $level <> "S" && $level <> "B") { $levelErr = "Level must be Gold Silver or Bronze"; $numerr++; } else { switch ($level) { case "B": $level = "Bronze"; break; case "G": $level = "Gold"; break; case "S": $level = "Silver"; break; } } } if (empty($_POST["message"])) { $message = ""; // allowed to be empty } else { $message = test_input($_POST["message"]); } } function test_input($data) { $data = trim($data); $data = stripslashes($data); $data = htmlspecialchars($data); return $data; } ?>
The 1179th Steve |
As sponsors sign up, we will place your logos here. The first few displayed will be the higher level (gold). For an additional $100 we will place the selected gold sponsor logo on the top of the home page of the web site (currently shown as "Sponsor: your logo here").
NORTH GRENVILLE COMMUNITY THEATRE SPONSORSHIP PROGRAM | ||
SPONSOR PACKAGE - GOLD | BENEFITS / VALUE | COST |
‘Sponsored by logo’ on NGCT website home page and ‘Sponsors’ page content | Website exposure estimated 5000 hits/visitors per year and 60 NGCT members/friends | $500 per year or equivalent in goods and services donations (SEE LIST BELOW) |
‘Sponsored by logo’ on NGCT Facebook cover page, links to your business page and monthly featured post | Facebook reaching 4200 accounts (4600 impressions) | |
Monthly Instagram posts on NGCT Instagram story | Instagram reaching 300 accounts (500 impressions) | |
Free half page advertising in all show programs | Exposure at minimum 2 major productions per year at the Urbandale Centre (holds 294 seats x minimum of 4 shows per production = 2,352) | |
‘Sponsored by logo’ on all production posters | Minimum 200 printed and displayed throughout North Grenville and surrounding district reaching thousands of potential viewers | |
‘Sponsored by logo’ on NGCT flyers | Promotional flyers and handouts provided at events | |
Four free show tickets | Can be used for any production in the year (max of 2 per year) | |
SPONSOR PACKAGE – SILVER | BENEFITS / VALUE | COST |
Free quarter page business card advertising in all show programs | Exposure at minimum 2 major productions per year at the Urbandale Centre (holds 294 seats x minimum of 4 shows per production = 2,352) | $250 per year or equivalent in goods and services donations (SEE LIST BELOW) |
‘Sponsored by logo’ on all production posters | Minimum 200 printed and displayed throughout North Grenville and surrounding district reaching thousands of potential viewers | |
‘Sponsored by logo’ on NGCT flyers | Promotional flyers and handouts provided at events | |
Three free show tickets | Can be used for any production in the year (max of 2 per year) | |
SPONSOR PACKAGE – BRONZE | BENEFITS / VALUE | COST |
Production tickets |
Advertising (single colour) on the reverse of all show tickets for a single performance
(allows different bronze sponsors to advertise on different performances) |
$100 per year or equivalent in goods and services donations (SEE LIST BELOW) |
Two free show tickets | Can be used for any production in the year (max 2 per year) |
GOODS AND SERVICES DONATIONS ALWAYS WELCOME
Set building materials e.g. paint, wood and tools
Props
Light and/or sound equipment
Costumes or material
Printing services
Host for Cast party
ADDED BENEFITS FOR SPONSORS & DONORS
Meet and greet at the NGCT Annual General Meeting
Feel good about supporting the Arts in the community
EVENTS IN A TYPICAL YEAR
Two major productions at the Urbandale Theatre, Kemptville
Annual touring mini-plays to support local charities
Experience Arts Festival - Kemptville
Santa Parade – Kemptville
Buskerfest – Kemptville
Special events e.g. International Plowing match
Nov 2023 EODL One Act Festival
Please complete the form below and send your logo (.jpg or .png) to Sponsors Committee.
echo "Name: " , $name , " "; echo "Email: " , $email , " "; echo "Website: " , $website , " "; echo "Level: " , $level , " "; echo "Message: " , $message , " "; if ($numerr > 0) { echo "Cannot send email until there are no errors. "; } else { echo "Sending email... "; //error_log("PHP in Contactus.HTML running..."); $send_to = "sponsor@ngct.ca"; // sponsor@ngct.ca $send_from = "webmaster@ngct.ca"; // mail() requires valid cPanel Mail addr $subject = "NGCT Sponsor"; // mail() uses \r\n at EOL $pers = "Person: $name" . "\r\n" . "Email: $email" . "\r\n"; $site = "Website: $website" . "\r\n"; $site = $site . "Level: $level" . "\r\n"; $msg = $pers . $site . $message; $msg = wordwrap($msg,70); $headers = "From: $send_from" . "\r\n" . "Reply-To: $email"; // mail() requires cPanel Email Routing $a = mail( $send_to, $subject, $msg, $headers ); if ($a) { //error_log("Success."); print("Thank you $name for your email. "); $ms = "sent.\n"; } else { //error_log("Failed."); print("Sorry $name your email was not sent. "); $ms = "failed.\n"; } // save submitted data in file, regardless $totchr = 0; $fname = "data_sponsors.txt"; $myfile = fopen($fname, "a") or die("Unable to append to file! " . $fname); $totchr += fwrite($myfile,"\n---new message\n"); $totchr += fwrite($myfile,date("Y-M-d H:i") . " ET"); // $msg contains \r\n for mail() but does \n\n for fwrite() // $totchr += fwrite($myfile,"\n" . $msg); $totchr += fwrite($myfile,"\nPerson: $name"); $totchr += fwrite($myfile,"\nEmail: $email"); $totchr += fwrite($myfile,"\nWebsite: $website"); $totchr += fwrite($myfile,"\nLevel: $level"); $totchr += fwrite($myfile,"\nMsg: " . wordwrap($message,70)); $totchr += fwrite($myfile,"\nMail $ms"); fclose($myfile); echo "Saved $totchr bytes to file. "; // hide fname } echo ""; // close started in $status } ?> |
Return to the home page.