MyBB Community Forums

Full Version: Mass Mail not working :(
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My Mass Mailing is not working, whenever I make one it instantly goes to queued. and when I run it now on Task Manager nothing happens.
Please upload a simple PHP email sender script and try to send a test email just to make sure your email account is not blocked by your hosting provider Wink
It's on myBB :/
Replace [email protected] with your email address!

<?php
 $to = "[email protected]";
 $subject = "Hi!";
 $body = "Hi,\n\nHow are you?";
 if (mail($to, $subject, $body)) {
   echo("<p>Email successfully sent!</p>");
  } else {
   echo("<p>Email delivery failed…</p>");
  }
 ?>

Save this file as test.php and upload it to your root mybb directory.

Tell us if get a message!
Not sure how that is supposed to help?