I came across an old thread on how to update the email subject line with this filter:
/**
* Event Tickets - Change Ticket Email Subject
*/
add_filter( 'tribe_rsvp_email_subject', 'tribe_change_rsvp_subject' );
function tribe_change_rsvp_subject( $subject ) {
$subject = sprintf( __( 'New Your tickets from %s', 'event-tickets' ), get_bloginfo( 'name' ) );
return $subject;
}
I was wondering when tribe_rsvp_email_subject() gets run and if there’s a way to add the event title + date to the subject line.
-
This topic was modified 8 years, 7 months ago by
joelgoodman. Reason: code tags … y'all should use markdown