b3_new_user_notification_addresses()

Description

Filters the recipients of emails who need to be notified.

Arguments

  • $recipients
    (string) - A string of comma separated email addresses.

Return

(string)   Email recipients

Usage

  1. function b3_new_user_notification_addresses( $recipients ) {
  2.     $email = 'info@address1.com, info@address2.com';
  3.  
  4.     return $email;
  5. }
  6. add_filter( 'b3_new_user_notification_addresses', 'b3_new_user_notification_addresses' );

Used in

Tags