Yes it is possible but you have to do it with the code.
/**
* BCC Additional Email Addresses on Member or Admin Notifications
* This will allow you to BCC additional email addresses for member and admin notifications.
*
* Ensure line 23 is changed to your preferred BCC email address
*
* title: BCC Additional Email Addresses on Member or Admin Notifications
* layout: snippet
* collection: email
* category: bcc
*
* You can add this recipe to your site by creating a custom plugin
* or using the Code Snippets plugin available for free in the WordPress repository.
* Read this companion article for step-by-step directions on either method.
* https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
function my_pmpro_email_headers_admin_emails( $headers, $email ) {
// BCC emails already going to admin_email.
if ( strpos( $email->template, '_admin' ) !== false ) {
$headers[] = 'Bcc:' . 'otheremail@domain.com';
}
return $headers;
}
add_filter( 'pmpro_email_headers', 'my_pmpro_email_headers_admin_emails', 10, 2 );
You can find more details here https://www.paidmembershipspro.com/bcc-additional-email-addresses-on-member-or-admin-notifications/#h-bcc-additional-email-addresses-on-admin-emails
Thank you for posting this solution @jahidhasan018
Let us know if you have any other questions regarding this @garteth
Because there have not been any recent updates to this topic, we will be changing the status to resolved.
If you’re enjoying Paid Memberships Pro, would you mind rating it 5-stars to help spread the word? https://wordpress.org/support/plugin/paid-memberships-pro/reviews/