メールを完全に送信できますが、プレーン テキストで表示されます。コンテンツ タイプを配置しようとして HTML として表示する多くのソリューションを試してきましたが、送信されたメールのヘッダーを確認すると、MIME およびコンテンツ タイプ ヘッダーがありません。 . 私が間違っていることは何ですか?
ありがとうございました!
$email = "example@test.com";
$subject = "example subject\r\n";
$msg_body = "example body with some html";
$host = "mail.examplehost.com";
$username = "exampleemail@test.com";
$password = "examplepass";
$smtp = Mail::factory('smtp',
array ('host' => $host,
'auth' => true,
'username' => $username,
'password' => $password));
$headers = array ('From' => "exampledomain.com",
'To' => $to,
'Subject' => $subject
'MIME-Version' => "1.0",
'Content-type' => "text/html; charset=iso-8859-1"
);
$mail = $smtp->send($to,$headers,$msg_body);