Bu php mail fonksiyonu ile karışık txt / html postalar göndermek mümkün mü?

0 Cevap php

Ben şimdiye kadar iki çözüm denedim, doingsome testleri kulüpler:

İlki başlıkların içinde mesaj (posta mesajı parametresi () işlevi boş) [] gönderir

    $boundary = "nextPart";
    $headers = "MIME-Version: 1.0\r\n";
    $headers .= "From: ".$from_name." <".$from.">\r\n";
    $headers .= "Content-Type: multipart/alternative; boundary = $boundary\r\n";
    //Html
    $headers .= "\n--$boundary\n";
    $headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
    $headers .= $html;
    //Text
    $headers .= "\n--$boundary\n";
    $headers .= "Content-type: text/plain; charset=iso-8859-1\r\n";
    $headers .= $text;

http://www.webcheatsheet.com/PHP/send_email_text_html_attachment.php#attachment (set başlıkları ve mesajın içinde gönderir): İkinci bir bu biridir

Non of them works properly (the first one doesn't work at all, the second works in gmail but it's not a properly formatted email, and some client can't handle it). Dissecting the code of php mailer (http://phpmailer.worxware.com/index.php?pg=phpmailer) i saw that it doesn't even try to send multipart emails.

Bu yüzden php mail fonksiyonu ile DÜZGÜN biçimlendirilmiş çok parçalı e-posta göndermek mümkün olduğunu merak ediyorum.

Teşekkür ederim

P.S. Ben sadece bu şey anlamak istiyorum, armut posta bilmek ve kullanmak.

0 Cevap