eventorganiser_booking_confirmed_email_template
(filter)
Pro
Filters the template of the e-mail sent to the bookee after a booking is confirmed
Parameters
string
|
$template |
The e-mail template (string ID) to use.
|
int
|
$booking_id |
The ID of the booking this e-mail is for
|
Example Usage
add_filter( 'eventorganiser_booking_confirmed_email_template', 'my_callback_function', 10, 2 );
function my_callback_function( $template, $booking_id ){
//Change first value and return it
return $template
};
Related