send a confrimation email to the event organizer

Home Forums Ticket Products Event Tickets Plus send a confrimation email to the event organizer

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1134140
    Niall
    Participant

    Hello
    I’m thinking of purchasing the Event Ticket Plus plugin, there is one feature that I have to have– the ability to send a confirmation email to the event organizer every time someone rsvps, I’m not sure if this is possible. Can you please clarify?

    Thanks in advance

    Andi

    #1134214
    Niall
    Participant

    figured it out:

    // cc someone when an event email is filled out

    function tribe_add_admin_email_to_rsvp_email_recipient( $to ) {
     
        if ( ! is_string( $to ) ) {
            return $to;
        }
     
        $combined_to = array(
            $to,
            tribe_get_organizer_email()
        );
     
        return $combined_to;
    }
     
    add_filter( 'tribe_rsvp_email_recipient', 'tribe_add_admin_email_to_rsvp_email_recipient' );
    #1134220
    Brian
    Member

    I am glad to see you were able to figure it out.

    I am going to go ahead and close this ticket. If you have a similar issue or another in the future, please do not hesitate to create a new ticket.

    Thanks!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘send a confrimation email to the event organizer’ is closed to new replies.