Add [Contact Form] to e-mails from the contact form.

This commit is contained in:
Raoul Snyman 2015-10-18 20:34:47 +02:00
parent 2e4985be3f
commit df9089f74d
1 changed files with 1 additions and 1 deletions

View File

@ -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']) {