diff --git a/classes/mailer.php b/classes/mailer.php
index dcb22e6d616e7b9b23bc95df322e146efcad9d1c..60b1ce4fd97cb57dac2cdaeb589d10fa067666ca 100644
--- a/classes/mailer.php
+++ b/classes/mailer.php
@@ -45,15 +45,7 @@ class Mailer {
 			++$hooks_tried;
 		}
 
-		$headers = [ "From: $from_combined" ];
-
-		if($message_html){
-			$headers[]="MIME-Version: 1.0";
-			$headers[]="Content-Type: text/html; charset=UTF-8";
-		}
-		else{
-			$headers[]="Content-Type: text/plain; charset=UTF-8";
-		}
+		$headers = [ "From: $from_combined", "Content-Type: text/plain; charset=UTF-8" ];
 
 		$rc = mail($to_combined, $subject, $message, implode("\r\n", array_merge($headers, $additional_headers)));