WC_Email::get_bcc_field
Get the bcc field definition.
Method of the class: WC_Email{}
No Hooks.
Returns
Array
.
Usage
// protected - for code of main (parent) or child class $result = $this->get_bcc_field();
WC_Email::get_bcc_field() WC Email::get bcc field code WC 9.9.3
protected function get_bcc_field() { return array( 'title' => __( 'Bcc(s)', 'woocommerce' ), 'type' => 'text', /* translators: %s: admin email */ 'description' => __( 'Enter Bcc recipients (comma-separated) for this email.', 'woocommerce' ), 'placeholder' => '', 'default' => '', 'desc_tip' => true, ); }