Skip to content

Commit 5645a5e

Browse files
committed
Fixed content-type definition in email send function.
1 parent e91ad53 commit 5645a5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interface/lib/classes/functions.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function mail($to, $subject, $text, $from, $filepath = '', $filetype = 'a
5757
$header .= "Content-Type: multipart/mixed; boundary=$uid\n";
5858

5959
$header .= "--$uid\n";
60-
$header .= "Content-Type: text/plain\n";
60+
$header .= "Content-Type: text/plain;\n\tcharset=\"UTF-8\"\n";
6161
$header .= "Content-Transfer-Encoding: 8bit\n\n";
6262
$header .= "$text\n";
6363

0 commit comments

Comments
 (0)