I am currently using PHP (or whatever the non-SMTP option is) to send emails and none of them are getting to people's inboxes.
How can I work on fixing this?
I am currently using PHP (or whatever the non-SMTP option is) to send emails and none of them are getting to people's inboxes.
How can I work on fixing this?
http://www.oxwall.org/forum/topic/2233
http://www.oxwall.org/forum/topic/26764
http://www.oxwall.org/forum/topic/11024
http://www.oxwall.org/forum/topic/5224
http://www.oxwall.org/forum/topic/21
http://www.oxwall.org/forum/topic/28645
http://www.oxwall.org/forum/topic/12553
http://www.oxwall.org/forum/topic/22646
http://www.oxwall.org/forum/topic/9231
http://www.oxwall.org/forum/topic/10620
http://www.oxwall.org/forum/topic/2322
http://www.oxwall.org/forum/topic/2835
http://www.oxwall.org/forum/topic/6978
My cron job is working, I don't use SMTP, and the emails aren't being caught by spam filters since they aren't being sent in the first place.
I've even disabled most of my plugins to see if that would fix it, but it hasn't.
Also are you using a plugin to send mail or the core mail option that comes with the install?
When you register as a member as a test, do you get the confirmation email?
(it could take up to 30min if you have hotmail or msn sometimes)
If you have the admin notify plugin, do you get the notification that you have a new member in your admin email address?
Is your host possibly blocking your email as a limit rule?PHP mail isn't blocked on my other websites that run on the same host. So no, PHP mail ins't blocked.
Also are you using a plugin to send mail or the core mail option that comes with the install?
When you register as a member as a test, do you get the confirmation email?
(it could take up to 30min if you have hotmail or msn sometimes)
If you have the admin notify plugin, do you get the notification that you have a new member in your admin email address?
I use the core mail option.
No confirmation email is received when signing up.
And I don't have that plugin.
But just in case (just to eliminate this possibly)run your domain thru this and tell me if it shows SPF record or not.
sorry just have to eliminate the obvious does your host server meet all these specs.
create a php file and put this code it in. and then fill in your two different emails at the top, thats it, save it and run it using the broswer and let me know if you get the email.
// fill in this part only
$from_email = "put a different email address here";
$to="put your email here";
//leave this part alone
$message = "Hi, this is just a test of the system email to see if its working or not";
$sitefrom = " Your domain email";
$subject = "this is a test of the email system";
$headers = "MIME-Version: 1.0\n";
$headers .= "Content-type: text/html;
charset=iso-8859-1\n";
$headers .= "X-Priority: 3\n";
$headers .= "X-MSmail-Priority: Normal\n";
$headers .= "X-mailer: php\n";
$headers .= "From: $from_email\n";
$headers .= "Reply-To: $from_email\n";
$extraparam ="-f $mail";
$mesleader = "You have received the following message from".$sitefrom."<br /><br />";
$message = $mesleader.$message;
$mail_sent=mail($to,$subject,$message,$headers,$extraparam);
dont forget the opening and closing php tags