Email Notifications ...

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
rsaeks
Posts: 7
Joined: 26 Apr 2005, 14:37

Email Notifications ...

Post by rsaeks »

I am trying to get email notifications to work, but I can't seem to. The only email I have been getting is when I sign up, or forget a password. When I enter in a new issue, I am not going an email sent to me. I have the following line in my config_inc.php file.

$g_email_receive_own = 'ON';

Any ideas on how to get this to work?
Narcissus
Developer
Posts: 338
Joined: 17 Feb 2005, 09:45

Post by Narcissus »

I'm not sure if it's the problem, but just a heads up: ON is a constant, not a string.

Change:
$g_email_receive_own = 'ON';

to:
$g_email_receive_own = ON;

and see what happens...
rsaeks
Posts: 7
Joined: 26 Apr 2005, 14:37

Post by rsaeks »

That looks like it was it. I now get my messages.
Post Reply