PHP を使用してメールを送信するたびに、受信者は次のようなものを受け取ります。
サーバー名を完全に削除するにはどうすればよいですか?
これが私の現在のスクリプトです」
$to="$Email";
$subject="Message received";
$headers= 'From: Website plc <info@website.com>' . "\r\n" .
'Reply-To: $Email' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
$contact_message="
Dear $FirstName $Surname,
message
Thanks
P&C Group Careers
http://www.career.pandcgroupng.com
";
mail("$to", "$subject", $contact_message, $headers);