我在我的電子郵件的PHP文件的頂部,它發送出去的電子郵件只發送文本電子郵件,而不是HTML
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= "From: $from <$from>" . "\r\n";
$headers .= 'Cc: [email protected]' . "\r\n";
$headers .= 'Bcc: [email protected]' . "\r\n";
我需要改變這只是一個純文本電子郵件的代碼......做什麼我改變。我想第二行的text/html文本/文本,但我不是肯定
請勿建立自己的mime電子郵件。使用PHPMailer(http://phpmailer.worxware.com)或Swiftmailer(http://swiftmailer.org)。他們更容易使用,更加可靠......而且免費。 – 2011-06-15 18:07:48