Title: BCC Account Updated Email To Site Admin
Last modified: February 26, 2026

---

# BCC Account Updated Email To Site Admin

 *  Resolved [denialdesign](https://wordpress.org/support/users/denialdesign/)
 * (@denialdesign)
 * [1 month, 1 week ago](https://wordpress.org/support/topic/bcc-account-updated-email-to-site-admin/)
 * Is it possible to BCC the Account Updated Email to the site admin when a user
   updates their profile? Is there a hook or function I could add to do this?
 * And can the email contain a summary of the changes that were made?

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Support [Yurii](https://wordpress.org/support/users/yuriinalivaiko/)
 * (@yuriinalivaiko)
 * [1 month, 1 week ago](https://wordpress.org/support/topic/bcc-account-updated-email-to-site-admin/#post-18835993)
 * Hello [@denialdesign](https://wordpress.org/support/users/denialdesign/)
 * There is no specific hook for the email headers, but you can use the `um_email_send_subject`
   filter hook to modify email headers stored in the `UM()->mail()->headers` option.
 * Try this code snippet:
 *     ```wp-block-code
       /** * Add the "Bcc" header to the "Account Updated" email. * Send the mail copy to the website admins. * * @param string $subject  Email subject. * @param string $template Email template key. */function my_um_email_changedaccount_email_bcc( $subject, $template ) {	if ( 'changedaccount_email' === $template ) {		$bcc = um_multi_admin_email();		UM()->mail()->headers .= 'Bcc: ' . implode( ',', $bcc ) . "\r\n";	}	return $subject;}add_filter( 'um_email_send_subject', 'my_um_email_changedaccount_email_bcc', 10, 2 );
       ```
   
 * There is no easy way to add a summary of the changes to this email. To do this
   you should replace the [um_account_updated_notification](https://github.com/ultimatemember/ultimatemember/blob/948887c06d317d9ee1c674aa5e841f7a1f373b7e/includes/core/um-actions-account.php#L591-L600)
   function with your custom function and use data from the `$changed` parameter
   to add `tags` and `tags_replace` pair to the email arguments array. This way 
   you can add support for the custom placeholder in this email template.
 * Regards
 *  Thread Starter [denialdesign](https://wordpress.org/support/users/denialdesign/)
 * (@denialdesign)
 * [1 month, 1 week ago](https://wordpress.org/support/topic/bcc-account-updated-email-to-site-admin/#post-18836149)
 * Thank you kindly!

Viewing 2 replies - 1 through 2 (of 2 total)

You must be [logged in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fbcc-account-updated-email-to-site-admin%2F%3Foutput_format%3Dmd&locale=en_US)
to reply to this topic.

 * ![](https://ps.w.org/ultimate-member/assets/icon-256x256.png?rev=3160947)
 * [Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin](https://wordpress.org/plugins/ultimate-member/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/ultimate-member/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/ultimate-member/)
 * [Active Topics](https://wordpress.org/support/plugin/ultimate-member/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/ultimate-member/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/ultimate-member/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [denialdesign](https://wordpress.org/support/users/denialdesign/)
 * Last activity: [1 month, 1 week ago](https://wordpress.org/support/topic/bcc-account-updated-email-to-site-admin/#post-18836149)
 * Status: resolved