私は管理者とユーザーの両方に異なるメールを送信したいと思います。 あなたと共有しているコードは、管理者とユーザーの両方に同じメールを送信しています。私を助けてください。PHPで管理者とユーザーに別のメッセージを送信するには
ここは私のコードです。
$car = $_POST['category'];
$pick = $_POST['text1'];
$drop = $_POST['text2'];
$source = $_POST['text3'];
$email= $_POST['text4'];
$to="$email";
$subject="Web Enquiry";
$message="Hi,". "\r\n" . "\r\n" .
"You've received an email with following details, from the inquiry made at the website- [email protected]" ."\r\n"."\r\n".
"Car Category:"." "."$car"."\r\n".
"Source Location:"." "."$pick"."\r\n".
"Destination Location:"." "."$drop"."\r\n".
"Day and Time.:"." "."$source". "\r\n".
"Email:"." "."$email". "\r\n" ."\r\n".
"Thanks & Regards,". "\r\n" .
"Web Admin"."\r\n" ;
$headers ="From:$email\n";
$headers .= 'Cc: [email protected]' . "\r\n";
$headers.="MIME-Version: 1.0\n";
$headers.="Content-type: text/html; charset=iso 8859-1";
if(mail($to, $subject, $message,$headers))
{
echo "Your Message has been sent." ;
} else {
echo "";
}
異なる変数を送信するたびに「mail()」を2回呼び出す – nogad
デモを表示するにはどうすればよいですか? – Narinder
メール(_VARSこちら);メール(_DIFFIRENT_VARSこちら)。 – nogad