Ben bir e-posta yolluyorum, ve mesajı ($ mesaj) HTML olduğunu
Ben (HTML MIME POSTA) önce farklı bir script kullanılır ve ben sadece bu yaparak HTML ayarlayın: setHTML ($ ileti).
Bu komut ile, ben e-posta içinde HTML olarak çıktı $ mesaj açardı nasıl emin değilim.
require_once "Mail.php";
$from = "noreply@domain.com";
$host = "mail.domain.com";
$username = "username";
$password = "password";
$headers = array ('From' => $from,
'To' => $emailto,
'Subject' => $subject);
$smtp = Mail::factory('smtp',
array ('host' => $host,
'auth' => true,
'username' => $username,
'password' => $password));
$mail = $smtp->send($emailto, $headers, $message);
if (PEAR::isError($mail)) {
echo("<p>" . $mail->getMessage() . "</p>");
} else {
echo("<p>Message successfully sent!</p>");
}