私はphpスクリプトを使用して電子メールを送信しています.差出人にユーザー名を表示し、返信パスに彼の電子メールIDを表示したい.次のコードを使用しています.メッセージにhtmlを使用しています.
Error.: It is not showing the from in email , showing unknow sender.
<?php
$name="TEST TEST";
$from1=test@gmail.com
$msg='<div>hello dfjdk faofd akfda </div>';
$to =$email;
$subject = $ab." Return SMS";
$message = $msg;
$from1 = 'test@yahoo.com';
$headers = "From:$name\r\n";
$headers .= "MIME-Version: 1.0\n";
$headers .= 'Content-Type: text/html; charset="iso-8859-1"'."\n";
$headers .= "Reply-To: $from1\r\n";
mail($to,$subject,$message,$headers);
?>