Skip to content
Snippets Groups Projects
Commit 1f076c96 authored by Eric Rasmussen's avatar Eric Rasmussen
Browse files

Put the parking checkbox in the email

parent 5699206d
Branches
No related tags found
No related merge requests found
......@@ -61,8 +61,11 @@ if (!empty($_POST)) {
$body .= "<strong>Recycling Containers:</strong> " . $_POST['recycle_number'] . "<br/>";
$body .= "<strong>Litter Containers:</strong> " . $_POST['litter_number'] . "<br/>";
$body .= "<strong>Picnic Tables:</strong> " . $_POST['picnic_number'] . "<br/>";
if (isset($_POST['electricity'])) {
$body .= '<strong>Electricity Hookup:</strong> <font color="#8B4513">Please contact Building Systems Maintenance at 402-472-1550</font><br/>';
if (isset($_POST['electricity']) && $_POST['electricity'] != 0) {
$body .= '<strong>Electricity Hookup:</strong> Yes <font color="#8B4513">Please contact Building Systems Maintenance at 402-472-1550</font><br/>';
}
if (isset($_POST['parking']) && $_POST['parking'] != 0) {
$body .= '<strong>Parking Needed:</strong> Yes <font color="#8B4513">Please contact Parking and Transit at 402-472-8436</font><br/>';
}
$body .= "<h3>Other Information</h3>";
......
......@@ -20,7 +20,7 @@ $page->titlegraphic = '<h1>Landscape Services</h1>';
$page->pagetitle = '<h2>Outdoor Event Space Request</h2>';
$page->maincontentarea = <<<EOF
<h3>Thank you for submitting your request, we will contact you as to availability.</h3>
<h3>Thank you for submitting your request. You should receive a confirmation email shortly and we will contact you as to availability.</h3>
EOF;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment