WC_Email::get_bcc_recipientpublicWC 1.0

Get valid Bcc recipients.

Method of the class: WC_Email{}

Hooks from the method

Returns

String.

Usage

$WC_Email = new WC_Email();
$WC_Email->get_bcc_recipient();

WC_Email::get_bcc_recipient() code WC 9.8.5

public function get_bcc_recipient() {
	$bcc = $this->bcc;
	/**
	 * Filter the Bcc recipient for the email.
	 *
	 * @since 9.8.0
	 * @param string   $bcc    CC recipient.
	 * @param object   $object The object (ie, product or order) this email relates to, if any.
	 * @param WC_Email $email  WC_Email instance managing the email.
	 */
	$bcc  = apply_filters( 'woocommerce_email_bcc_recipient_' . $this->id, $bcc, $this->object, $this );
	$bccs = array_map( 'trim', explode( ',', $bcc ) );
	$bccs = array_filter( $bccs, 'is_email' );
	$bccs = array_map( 'sanitize_email', $bccs );
	return implode( ', ', $bccs );
}