summaryrefslogtreecommitdiff
path: root/modules/notification/helpers
diff options
context:
space:
mode:
Diffstat (limited to 'modules/notification/helpers')
-rw-r--r--modules/notification/helpers/notification.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/notification/helpers/notification.php b/modules/notification/helpers/notification.php
index 0cf536bc..e4212203 100644
--- a/modules/notification/helpers/notification.php
+++ b/modules/notification/helpers/notification.php
@@ -185,7 +185,7 @@ class notification {
->to($email)
->subject($pending->subject)
->header("Mime-Version", "1.0")
- ->header("Content-type", "text/html; charset=utf-8")
+ ->header("Content-Type", "text/html; charset=UTF-8")
->message($pending->body)
->send();
$pending->delete();
@@ -199,7 +199,7 @@ class notification {
->to($email)
->subject(t("Multiple events have occurred")) // @todo fix this terrible subject line
->header("Mime-Version", "1.0")
- ->header("Content-type", "text/html; charset=utf-8")
+ ->header("Content-Type", "text/html; charset=UTF-8")
->message($text)
->send();
}
@@ -213,7 +213,7 @@ class notification {
->to($subscribers)
->subject($subject)
->header("Mime-Version", "1.0")
- ->header("Content-type", "text/html; charset=utf-8")
+ ->header("Content-Type", "text/html; charset=UTF-8")
->message($text)
->send();
} else {