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

Prepend note about availability

parent aa05da92
No related branches found
No related tags found
No related merge requests found
......@@ -40,14 +40,15 @@ if (!empty($_POST)) {
$body .= "<strong>Bad Weather Contingency:</strong> " . $_POST['weather'] . "<br/>";
$body .= "<strong>Additional Comments:</strong> " . $_POST['comments'] . "<br/>";
$mailer->html_body = $body;
$note = "<p>Note: This request does not confirm/reserve access to the space. We will contact you as to availability.</p>";
$mailer->html_body = $note.$body;
$mailer->to_address = $_POST['email'];
$mailer->from_address = $sendFromEmail;
$mailer->subject = $emailSubject;
$mailer->send();
$mailer->html_body = $body;
$mailer->from_address = $_POST['email'];
// Send to head of Landscape Services
$mailer->to_address = $sendToEmail;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment