Support > cpg1.5 email
Send notifications to only specific admins - PART II
(1/1)
maddogprod:
In my first post I asked if there was a way to not have emails for new registrations and photo approvals go to all admins, but only to a select couple. I received the suggestion to:
--- Quote ---Or try
In register.php
find:
Code:
$result = cpg_db_query("SELECT user_id, user_email, user_language FROM {$CONFIG['TABLE_USERS']} WHERE user_group = 1");
replace with:
Code:
$result = cpg_db_query("SELECT user_id, user_email, user_language FROM {$CONFIG['TABLE_USERS']} WHERE user_name = 'username_of_the_admin'");
--- Quote ---
--- End quote ---
Anyone know what file I would modify to do the same for photo approvals?
Thanks.
--- End quote ---
Jeff Bailey:
http://belvederecommunityfoundation.com/photocontest/
--- Quote from: maddogprod on September 25, 2012, 03:28:22 am ---Anyone know what file I would modify to do the same for photo approvals?
--- End quote ---
There are several options.
You can edit mailer.inc.php
find
--- Code: ---$result = cpg_db_query("SELECT user_email FROM {$CONFIG['TABLE_USERS']} WHERE user_group = 1");
--- End code ---
and change as suggested above. This would change the way emails are sent to the admin anywhere the cpg_mail() function is called using 'admin' as the $to parameter.
A way to change it without affecting the entire gallery.
In db_input.php
find
--- Code: ---cpg_mail('admin', sprintf($lang_db_input_php['notify_admin_email_subject'], $CONFIG['gallery_name']), make_clickable(sprintf($lang_db_input_php['notify_admin_email_body'], USER_NAME, $CONFIG['ecards_more_pic_target'].(substr($CONFIG["ecards_more_pic_target"], -1) == '/' ? '' : '/') .'editpics.php?mode=upload_approval')));
--- End code ---
replace with
--- Code: ---cpg_mail('email_of_admin@email.com', sprintf($lang_db_input_php['notify_admin_email_subject'], $CONFIG['gallery_name']), make_clickable(sprintf($lang_db_input_php['notify_admin_email_body'], USER_NAME, $CONFIG['ecards_more_pic_target'].(substr($CONFIG["ecards_more_pic_target"], -1) == '/' ? '' : '/') .'editpics.php?mode=upload_approval')));
--- End code ---
Additionally you can try changing it here
In notifyupload.php
find
--- Code: ---cpg_mail('admin', sprintf($lang_db_input_php['notify_admin_email_subject'], $CONFIG['gallery_name']), make_clickable(sprintf($lang_db_input_php['notify_admin_email_body'], USER_NAME, $CONFIG['ecards_more_pic_target'].(substr($CONFIG["ecards_more_pic_target"], -1) == '/' ? '' : '/') .'editpics.php?mode=upload_approval')));
--- End code ---
replace with
--- Code: ---cpg_mail('email_of_admin@email.com', sprintf($lang_db_input_php['notify_admin_email_subject'], $CONFIG['gallery_name']), make_clickable(sprintf($lang_db_input_php['notify_admin_email_body'], USER_NAME, $CONFIG['ecards_more_pic_target'].(substr($CONFIG["ecards_more_pic_target"], -1) == '/' ? '' : '/') .'editpics.php?mode=upload_approval')));
--- End code ---
All code untested and you may be required to edit multiple files to get it to work completely. Please report any problems.
maddogprod:
Thanks! The overall option would be best but my hunch is the others could override it. I'll test my way through it but I don't foresee a problem. I'll let you know if I do.
Thanks again for your help.
Jeff Bailey:
The db_input.php and notifyupload.php files will not override mailer.inc.php unless you change the first parameter, 'admin' to something different.
No problem. Please resolve your thread if you find everything works correctly.
http://forum.coppermine-gallery.net/index.php/topic,55415.msg270631.html#msg270631
Navigation
[0] Message Index
Go to full version