これは私のコードです
$subject = "Welcome to Last Alliance Standing";
$message = "$name Welcome to Last Alliance Standing, Your account has been registered and you are now able to login and play";
$headers = "From: Team Laser<noreply@lastalliancestanding.com>\r\n";
$headers .= "X-Mailer: Drupal\n";
$headers .= 'MIME-Version: 1.0' . "\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
if (mail($email, $subject, $message, $headers)) {
header("location: passwordrequest-success.php");
exit();
} else {
echo "Not Sent";
}
電子メールは常に送信されるわけではありませんが、送信されることもありますが、「送信されていません」というエラーが表示されることもあります