Title: Admin notifications multiple users
Last modified: June 14, 2019

---

# Admin notifications multiple users

 *  Resolved [transcom](https://wordpress.org/support/users/transcom/)
 * (@transcom)
 * [6 years, 12 months ago](https://wordpress.org/support/topic/admin-notifications-multiple-users/)
 * Is it possible to send admin notifications to multiple email addresses?

Viewing 1 replies (of 1 total)

 *  Plugin Contributor [Alessandro Tesoro](https://wordpress.org/support/users/alessandrotesoro/)
 * (@alessandrotesoro)
 * [6 years, 12 months ago](https://wordpress.org/support/topic/admin-notifications-multiple-users/#post-11639106)
 * Hi [@transcom](https://wordpress.org/support/users/transcom/)
 * There is no built-in ui to configure this but it can be added through the hooks
   provided by the plugin.
 * For example, if you’re looking to notify another address of a new registration,
   you can hook into the action called `wpum_after_registration` see here for source
   code [https://github.com/WPUserManager/wp-user-manager/blob/101525258e66989477dc95eb5329518615719fa8/includes/wpum-forms/class-wpum-form-registration.php#L446](https://github.com/WPUserManager/wp-user-manager/blob/101525258e66989477dc95eb5329518615719fa8/includes/wpum-forms/class-wpum-form-registration.php#L446)
 * Here’s a sample snippet you can add to your theme’s functions.php file.
 *     ```
       add_action(
       	'wpum_after_registration',
       	function( $user_id, $values ) {
   
       		$emails = new WPUM_Emails();
       		$emails->__set( 'user_id', $user_id );
       		$emails->__set( 'heading', 'Heading title of the email' );
   
       		$email   = 'email@address.com';
       		$subject = 'Email subject';
       		$message = 'Email content';
   
       		$emails->send( $email, $subject, $message );
   
       	},
       	10,
       	2
       );
       ```
   
 * The email sent through that snippet will have the fancy template that is applied
   to all WPUM emails. If you don’t want to send the email with that template, you
   can use [https://developer.wordpress.org/reference/functions/wp_mail/](https://developer.wordpress.org/reference/functions/wp_mail/).
 * Hope this helps.

Viewing 1 replies (of 1 total)

The topic ‘Admin notifications multiple users’ is closed to new replies.

 * ![](https://ps.w.org/wp-user-manager/assets/icon-256x256.png?rev=3468506)
 * [WP User Manager - User Profile Builder & Membership](https://wordpress.org/plugins/wp-user-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-user-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-user-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-user-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-user-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-user-manager/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Alessandro Tesoro](https://wordpress.org/support/users/alessandrotesoro/)
 * Last activity: [6 years, 12 months ago](https://wordpress.org/support/topic/admin-notifications-multiple-users/#post-11639106)
 * Status: resolved