Notification E-Mail for RSVP orders without using Woo

Home Forums Ticket Products Event Tickets Plus Notification E-Mail for RSVP orders without using Woo

  • This topic has 3 replies, 2 voices, and was last updated 9 years ago by Elias.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1265278
    Elias
    Participant

    Hello there,

    I’m looking for a way to receive notification emails when somebody has booked a ticket via RSVP and I’m not sure how to set this up? I would like to do this without using Woo since I like the simple way RSVP is setup. How can I achieve that?

    Thank you in advance!

    Best,
    Elias

    #1267748
    Barry
    Member

    Hi Elias,

    If you simply want to make sure the site admin receives a copy of the same email that is sent to customers, you could try adding the following code either to a custom plugin or else to your theme’s functions.php file (if that’s an approach you prefer):

    function rsvp_confirmations_add_site_admin( $to ) {
    	$to = (array) $to;
    	$to[] = get_option( 'admin_email' );
    	return $to;
    }
    
    add_filter( 'tribe_rsvp_email_recipient', 'rsvp_confirmations_add_site_admin' );

    Does that help at all?

    #1277360
    Support Droid
    Keymaster

    Hey there! This thread has been pretty quiet for the last three weeks, so we’re going to go ahead and close it to avoid confusion with other topics. If you’re still looking for help with this, please do open a new thread, reference this one and we’d be more than happy to continue the conversation over there.

    Thanks so much!
    The Events Calendar Support Team

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Notification E-Mail for RSVP orders without using Woo’ is closed to new replies.