CODE: How to send Emails as Bcc
Last Updated: November 13, 2023
This is the pluggable filter code to modify the original function of sending ticket emails to send them as Bcc instead of regular mail.
1 2 3 4 5 |
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? If not, send us a ticket via helpdesk
Event Tickets Addon Buy Now
Similar Articles
Auto Complete Ticket OrderAuto re-stocking refunded, cancelled or failed ordersChangelog for Event TicketsCODE: How to send Emails as BccHow to add additional data to confirmation emailHow to add additional fields at checkoutHow to add additional fields to download attendees CSV fileHow to customize ticket email templateHow to manage capacity separately for repeat eventsHow to set up Event TicketsHow to set up variable prices for TicketsHow To Switch From WooCommerce Blocks to Shortcode-Based Cart & Checkout Pages