Exemplo n.º 1
0
 static function AltBody($phpmailer)
 {
     // If DOMDocument isn't available, don't implement Textify (no alternate plaintext body will be sent)
     if (!class_exists('DOMDocument')) {
         return;
     }
     $Textify = new Textify($phpmailer->Body);
     $phpmailer->AltBody = $Textify->render();
 }
Exemplo n.º 2
0
 static function AltBody($phpmailer)
 {
     $Textify = new Textify($phpmailer->Body);
     $phpmailer->AltBody = $Textify->render();
 }