Hi
We just bought NeoRecruite and started to test it. After selecting in "Offers parameters" all user groups (we want registered users to be able to create new offers) I created new offer from frontend. And it turned out that in that moment script send emails with notification about new offer to all users (16000+). I look thru parameters but didn't find any that can turn off sending those emails. How can I stop it? Now I'm afraid about further testing.
Joomla 1.0.15
Edit
Ok I found the problem
In front.offer.save.php email is send to
all users who accept mails (and sendEmail is set 1 by default, so I guess most users don't even know that they could turn it off)
$query = "SELECT email FROM #__users WHERE sendEmail = 1";
$database->setQuery( $query );
$admins = $database->loadObjectList();
This is wrong in my opinion, why to inform
all users about
every new offer? Also it is quite often that after saving for the first time you see some errors it the text and you correct them, while emial with notification was already send. I will fix it for myself, and adjust to my needs, but I think it should be also corrected in your installation files.
Best
Artur