CODE: How to send Emails as Bcc

Last Updated: December 5, 2024

This is the pluggable filter code to modify the original function of sending ticket emails to send them as Bcc instead of regular mail.

add_filter('evotx_beforesend_tix_email_data','custom_function_001',10,2);
public function custom_function_001($array, $order_id){
	$array['type']='bcc';
	return $array;
}

Did this article help you?

Ready to setup your calendar?