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?
Event Tickets Addon Buy Now
- Event Tickets
- Auto Complete Ticket Order
- Auto re-stocking refunded, cancelled or failed orders
- Changelog for Event Tickets
- CODE: How to send Emails as Bcc
- How to add additional data to confirmation email
- How to add additional fields at checkout
- How to add additional fields to download attendees CSV file
- How to customize ticket email template
- How to manage capacity separately for repeat events
- How to set up Event Tickets
- How to set up variable prices for Tickets
- How To Switch From WooCommerce Blocks to Shortcode-Based Cart & Checkout Pages