次のコード行があります。
$from = "email@domian.com";
$headers = "From:" . $from;
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
htmlファイルにfile_get_contentsを使用しているため、MIMEタイプが必要です。問題は、「email@domain.comMIME-Version:1.0」と表示されるヘッダーの下にあり、「email@domain.com」とだけ言いたいのですが、ヘッダーに表示されているから、のMIMEタイプを削除しますか?
ありがとう