zamzam
June 11, 2008, 9:36am
1
hello people,
mail($emailaddress, “Your password is”, “$message”, “From: $cmail
BCC: $codemail”);
echo “<br>”;
I have problem. The mail above is for sending emails. when I sent it indicates that the email has been sent. But people can not receive. Where is the problem??
your help will be highly appreciated.
Make sure that email didn’t end up in the Junk Folder of recipients.
zamzam
June 11, 2008, 10:36am
3
Hello Kailash Badu,
It is not appearing in a Junk Folder of recipients. Where is it going??
vlaer
June 11, 2008, 11:01am
4
use phpMailer…
or don`t forget about headers
$headers = "MIME-Version: 1.0
";
$headers .= "Content-type: text/plain; charset=iso-8859-1
";
$headers .= "From: blabla<test@test.test>
";
$headers .= "X-Mailer: PHP’s mail() Function
";
Nick
June 11, 2008, 11:05am
5
mail($emailaddress, "Your password is", "$message", "From: $cmail\\r\
BCC: $codemail");
I suggest you to use phpMailer for mailing. It is easy to code and mostly used.
or try this
mail($emailaddress, “Your password is”, $message, “From:”.$cmail."
BCC:".$codemail);
zamzam
June 11, 2008, 1:28pm
7
Hello people,
I have started receiving the following error message:
SMTP server response: 550 5.7.1 Requested action not taken: message refused in
What could be the problem??? Please help
If u r using windows try this
Go to: start > settings > control panel > Administrative Tools > Internet Information Services
Expand the " (local computer)" node
Right click on your SMTP server > go to “Properties”
Click “Access” tab
Under Relay Restrictions, click the “Relay” button
Click “Add”
Select “Single Computer” and enter IP address 127.0.0.1
Hit OK, OK, OK (until the properties dialog is closed)
This helps u to debug the error