From df9089f74dfee67abe3e6e6fdf648ecaa5796e4d Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Sun, 18 Oct 2015 20:34:47 +0200 Subject: [PATCH] Add [Contact Form] to e-mails from the contact form. --- files/contact-us.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/contact-us.php b/files/contact-us.php index 748da48..a6b0f6a 100644 --- a/files/contact-us.php +++ b/files/contact-us.php @@ -60,7 +60,7 @@ else { // Get everything together $headers['From'] = $_POST['name'] . ' <' . $_POST['email'] . '>'; $headers['To'] = 'support@openlp.org'; -$headers['Subject'] = $_POST['subject']; +$headers['Subject'] = '[Contact Form] ' . $_POST['subject']; $body = $_POST['message']; $recipients = 'support@openlp.org'; if ($_POST['me-too']) {