nalapachakam.in62
New Member
- Messages
- 24
- Reaction score
- 0
- Points
- 1
I tried but mail() not working
Test script:
---------- Post added at 11:07 AM ---------- Previous post was at 11:00 AM ----------
Another Test Script:
Everything failed.... Please help.. iam on free hosting now> mail() worked for me before....
Test script:
<?php
$to = "recipient@example.com";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";
if (mail($to, $subject, $body)) {
echo("<p>Message successfully sent!</p>");
} else {
echo("<p>Message delivery failed...</p>");
}
?>
---------- Post added at 11:07 AM ---------- Previous post was at 11:00 AM ----------
Another Test Script:
<?php
$send_html_messages = "no";
$adminmail="admin@nalapachakam.in"; //change to your adminmail
$useremail="nalapachakam.in@gmail.com"; //change to your own personal mail
$subject = "subject test";
$content = "test content";
$xheaders = "From: " . $adminmail . " <" . $adminmail . ">\n";
$xheaders .= "X-Sender: <" . $adminmail . ">\n";
$xheaders .= "X-Mailer: PHP\n"; // mailer
$xheaders .= "X-Priority: 6\n"; // Urgent message!
if ($send_html_messages == "yes") {
$xheaders .= "Content-Type: text/html; charset=iso-8859-1\n"; // Mime type
}
mail("$useremail","$subject","$content",$xheaders);
if (mail("$useremail","$subject","$content",$xheaders)) {
echo("<p>Message successfully sent!</p>");
} else {
echo("<p>Message delivery failed...</p>");
}
?>
Everything failed.... Please help.. iam on free hosting now> mail() worked for me before....
Last edited: