email notification after upgrade
-
I would like to send the update notification to more than one email recipient. Would it be possible to do this if I add an extra field to enter the email address – perhaps something like this?
// send multiple update emails function XYZ_filter_auto_update_email( $email ) { $admin_email = get_bloginfo('admin_email') ; $extra_email = get_option('extra_email') ; // this is an added entry field within the plugin options form $recipients = array($admin_email,$extra_email); $email['to'] = $recipients; return $email; } add_filter( 'auto_core_update_email', 'XYZ_filter_auto_update_email', 1 );
Any help appreciated.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘email notification after upgrade’ is closed to new replies.