hello. your mail() function does not seem to be working. It says "Mail Send" but nothing actually is sent.
<?php
$to = "recipient@example.com";
$subject = "Hi!";
$body = "How are you?";
if (mail($to, $subject, $body)) {
echo("<p>Message successfully sent!</p>");
} else {
echo("<p>Message delivery failed...</p>");
}
?>
Note, this is not a coding issue.
<?php
$to = "recipient@example.com";
$subject = "Hi!";
$body = "How are you?";
if (mail($to, $subject, $body)) {
echo("<p>Message successfully sent!</p>");
} else {
echo("<p>Message delivery failed...</p>");
}
?>
Note, this is not a coding issue.