Skip to content
Snippets Groups Projects
Unverified Commit 81512958 authored by Andrew Dolgov's avatar Andrew Dolgov
Browse files

Revert "trivia: coding style"

This reverts commit 9e557501.
parent 8ef816d8
No related branches found
No related tags found
No related merge requests found
...@@ -47,11 +47,12 @@ class Mailer { ...@@ -47,11 +47,12 @@ class Mailer {
$headers = [ "From: $from_combined" ]; $headers = [ "From: $from_combined" ];
if ($message_html) { if($message_html){
$headers[] = "MIME-Version: 1.0"; $headers[]="MIME-Version: 1.0";
$headers[] = "Content-Type: text/html; charset=UTF-8"; $headers[]="Content-Type: text/html; charset=UTF-8";
} else { }
$headers[] = "Content-Type: text/plain; charset=UTF-8"; else{
$headers[]="Content-Type: text/plain; charset=UTF-8";
} }
$rc = mail($to_combined, $subject, $message, implode("\r\n", array_merge($headers, $additional_headers))); $rc = mail($to_combined, $subject, $message, implode("\r\n", array_merge($headers, $additional_headers)));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment