From d73262e536cf63a310ff7b7167c54d8e20b953e2 Mon Sep 17 00:00:00 2001
From: Eric Rasmussen <erasmussen2@unl.edu>
Date: Mon, 11 Apr 2011 19:41:10 +0000
Subject: [PATCH] Add recycling, electricity notice to email

---
 www/landscape/outdoorevents/index.php | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/www/landscape/outdoorevents/index.php b/www/landscape/outdoorevents/index.php
index f293947..ae3ba42 100644
--- a/www/landscape/outdoorevents/index.php
+++ b/www/landscape/outdoorevents/index.php
@@ -31,10 +31,13 @@ if (!empty($_POST)) {
     $body .= "<strong>Home Phone:</strong> " . $_POST['home'] . "<br/>";
     $body .= "<strong>Fax:</strong> " . $_POST['fax'] . "<br/>";
     
-    $body .= "<h3>Event Requirements</h3>";
+    $body .= "<h3>Additional Event Requests</h3>";
+    $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/>";
-    $body .= "<strong>Electricity Hookup:</strong> " . $_POST['electricity'] . "<br/>";
+    if ($_POST['electricity']) {
+        $body .= '<strong>Electricity Hookup:</strong> <font color="#8B4513">Please contact Building Systems Maintenance at 402-472-1550</font><br/>';
+    }
     
     $body .= "<h3>Other Information</h3>";
     $body .= "<strong>Bad Weather Contingency:</strong> " . $_POST['weather'] . "<br/>";
-- 
GitLab