• Resolved Marc McKeown

    (@dlandfans)


    The default subject line for sending RSVPs is:
    Your tickets from ….
    Is there a way to override this to make it Your RSVPs from ….
    I couldn’t find it in the email template.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor András Guseo

    (@aguseo)

    Hey @dlandfans

    You should be able to use this filter for RSVP emails:

    tribe_tpp_email_subject

    like

    add_filter ( 'tribe_rsvp_email_subject', 'my_rsvp_email_subject' );
    
    function my_rsvp_email_subject() {
        return "This is my new email subject";
    }

    Hope this helps.

    Cheers,
    Andras

    Thread Starter Marc McKeown

    (@dlandfans)

    Thanks, I did not see that filter. Worked great!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘RSVP Email Subject’ is closed to new replies.