Gossamer Forum
Home : Products : Links 2.0 : Discussions :

Another ? about mass e-mail...

Quote Reply
Another ? about mass e-mail...
Does it, by default, not e-mail the administrator or does it? If it does, how can I tell it not to send e-mail if it matches the admin e-mail?

Thanks,
Derek
Quote Reply
Re: Another ? about mass e-mail... In reply to
In nph-email.cgi, sub main, just after the line:

Quote:
# Make sure the address looks ok and that we haven't emailed to this person before.

Add the following:

Quote:
($data[$db_mail] eq $db_admin_email) and print qq~<a href="$href" target="_blank">$data[$db_key_pos]</a> - Link Owner is Links Administrator. Skipping\n~ and next;

That will prevent sending mail to the administrator (if it isn't being done already).

I hope this helps.