Hey @Elin!
Using the principles in that Themer’s Guide I linked to above, you would make a customizable version of this file in The Events Calendar:
the-events-calendar/src/views/tickets/email.php
You’ll find a while bunch of code there and you can place the text there.
—
A SIMPLER METHOD
For your specific question, there is also one other method you can use. It’s much, much simpler, and just requires pasting some code into your theme’s functions.php file.
Please note, however, that this only adds the code to the very, very bottom of the email – e.g. the bottom-most item in the email, the last text in the very bottom.
If that’s fine, then you can add your lorem ipsum text or any other text or HTML there by adding code like this in your theme’s functions.php file:
if ( function_exists( 'tribe_get_events' ) ) {
function tribe_support_1013963() {
ob_start(); ?>
<p>Lorem ipsum dolor questionens</p>
<?php echo ob_get_clean();
}
add_action( 'tribe_tickets_ticket_email_bottom', 'tribe_support_1013963' );
}
I hope that helps!
George