summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFritz Otlinghaus <scriptkiddi@fap-studios.de>2017-02-03 17:23:06 +0100
committerGitHub <noreply@github.com>2017-02-03 17:23:06 +0100
commitc9336840ff02be4e586c5fee8dd43ea07855eb49 (patch)
treeb2d1c6f4ac76b1643c5a0932dc231b9b471c7ee6
parent6f367eefe06c4ec016207a152c2f31e4a15ec805 (diff)
Update email_helper.php
-rw-r--r--includes/helper/email_helper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/helper/email_helper.php b/includes/helper/email_helper.php
index 97e85296..462b5641 100644
--- a/includes/helper/email_helper.php
+++ b/includes/helper/email_helper.php
@@ -17,7 +17,7 @@ function engelsystem_email_to_user($recipient_user, $title, $message, $not_if_it
function engelsystem_email($address, $title, $message) {
global $no_reply_email;
- $result = mail($address, $title, $message, sprintf("Content-Type: text/plain; charset=UTF-8\r\nFrom: Engelsystem <%s>", $no_reply_email);
+ $result = mail($address, $title, $message, sprintf("Content-Type: text/plain; charset=UTF-8\r\nFrom: Engelsystem <%s>", $no_reply_email));
if ($result === false) {
engelsystem_error('Unable to send email.');
}