Page 1 of 1

Admin Notifications not working

Posted: 2014-04-04 12:50
by kavlito
In Admin Settings/Admin Notifications, I have it set to Notify admin for all new sign-ups. (see attached Admin Notification Settings)

I have 38 signups and have never received any notifications via email. I verified the admin email address and it is correct. (However, you can only see the admin email address in the database membership_users table)

Anybody else having this problem? Resolution?

Thanks in advance.

Re: Admin Notifications not working

Posted: 2014-04-05 09:53
by a.gneady
Try testing if your server can send mails using these settings or not .. Create a file named for example "test-mail.php" with the following code:

Code: Select all

<?php
    mail(
         "your_admin_email_here",
         "Test",
         "This is a test email",
         "From: your_admin_email_here"
    );
?>
Replace "your_admin_email_here" in the above code with the email address you used in the "Sender email" box. Finally, upload and run the above script on your server and notice any error messages.