improvement for mail composition (disabled text version to avoid problems with some...
[brisk.git] / web / Obj / mail.phh
index d0d6ea7..1471166 100644 (file)
@@ -21,7 +21,8 @@ function brisk_mail($to, $subject, $text, $html)
 
     $mime = new Mail_mime($brisk_mail_hp);
 
-    $mime->setTXTBody($text);
+    // disabled to avoid client problems
+    // $mime->setTXTBody($text);
     $mime->setHTMLBody($html);
 
     $body = $mime->get();
@@ -33,4 +34,4 @@ function brisk_mail($to, $subject, $text, $html)
 
     return TRUE;
 }
-?>
\ No newline at end of file
+?>