ユーザーが登録後にアカウントを確認するためのリンクを送信したいと考えています。しかし、 で使用するwww.singapore.com
と$message
メールを受信できますが、 に変更するとwww.singapore.com.sg
受信できません。リンクが原因なのか、それともコードにエラーがあるのだろうか? 私を助けてください。
$domain ='www.singapore.com';
$id = mysql_insert_id();
$to = 'myemail@gmail.com';
$subject = "E-mail Verification";
$message = 'Click on the link to verify your account: http://'.$domain.'/rates/activation.php?id='.$id.' ';
$headers = "From: <Singapore> \r\n";
mail($to,$subject,$message,$headers, '-f enquiry@singapore.com.sg');