xampp サーバーを使用すると、メールを送信できません。これが私のコードです。
class email {
function emailwithattach($email_to,$email_subject,$email_message)
{
$email_message="Test mail";
$email_subject = "Transaction Detail Notification";
$headers = "From: ".$email_from;
if (@mail($email_to,$email_subject,$email_message))
{
return true;
}
}
}
別のWebサーバーを使用して動作しますが、XAMPPでは動作しません