Gossamer Forum
Home : Products : Others : Gossamer Community :

Signup Notify Admin not emailing

Quote Reply
Signup Notify Admin not emailing
Choose whether or not to email the admin email account notifying the administrator of the new signup.
signup_notify_admin

I'm using the signup notify admin option (set to Yes) but email notice is not being sent when a new signup occurs. I'd prefer the email notifications as it would be impossible to identify new registrations by viewing an alpha list of all registrations. The email address being used is a valid address. Suggestions?
Quote Reply
Re: [Karen] Signup Notify Admin not emailing In reply to
  
Same problem here Crazy

Last edited by:

Payooo: Mar 2, 2004, 3:42 PM
Quote Reply
Re: [Payooo] Signup Notify Admin not emailing In reply to
I think this is because the code to send the email is in the wrong place in lib/Community/Web/User.pm

I think these lines

if ($CFG->{signup_notify_admin} and $notify) {
send_email('user_notify_admin.eml', $user);
}

need moving. Can someone from GT confirm?
Quote Reply
Re: [afinlr] Signup Notify Admin not emailing In reply to
Thanks! We'll get that fixed up. 1.0.2 should be out pretty soon with these fixes.

Cheers,

Alex
--
Gossamer Threads Inc.
Quote Reply
Re: [Alex] Signup Notify Admin not emailing In reply to
Hi
I took of :

if ($CFG->{signup_notify_admin} and $notify) {
send_email('user_notify_admin.eml', $user);
}

and still not working the Sign up Notify Admin.

Help
Thanks
Antoine
Quote Reply
Re: [Alex] Signup Notify Admin not emailing In reply to
Hi,

I encountered the same problem and figured out what's causing it. I'm running v.1.1.1

These were my settings - and they don't work in conjunction with each other:
signup_validate_email = 1
signup_notify_admin = 1

The code in user_signup does not notify the admin if signup_validate_email is set to 1.
if ($CFG->{signup_validate_email}) {

# there IS NOT admin notify is in this if statement

} elsif ($CFG->{signup_validate_admin}) {

# there IS an admin notify is in this if statement

} else {

# there IS admin notify is in this if statement

}

Also, the code in user_verify does not notify admin unless the admin has already validated the signup.

Thought you should know.

peace.