Hi @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
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 protected]';
$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.ww.wp.xz.cn/reference/functions/wp_mail/.
Hope this helps.