• Resolved manawatuhomeeducators

    (@manawatuhomeeducators)


    Our volunteer organisation is currently trialling Event Tickets as a possible solution to our event procedure/system (with the prospect of getting Event Tickets Plus).

    We need the ability for RSVPs to go to a variety of email addresses – depending on who is organising the specific event – rather than the admin email address of our account/website. Our organisers need to be receiving email RSVPs directly for the event(s) they are organising.

    If this feature/function is not yet available, when is it likely to be please?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi, there is a filter where you can set the mail headers in your theme-function so you can specify who get this mail like this .

    function your_function_mail_bcc( $headers = array(), $event_id = null, $order_id = null ) {
        $headers[] = 'bcc: [email protected]';
    
    	return $headers;
    }
    
    add_filter( 'tribe_rsvp_email_headers', 'your_function_mail_bcc' );

    maybe this will help you

    Thread Starter manawatuhomeeducators

    (@manawatuhomeeducators)

    shogothu – thank you for your reply. To me (not a developer/coder) though, that looks like a global amendment to determine the email recipient… Correct?

    Our challenge is we want the RSVP to go to the organiser of each event – which is likely to be a variety of different people depending on the event. A global amendment would not fix this…

    It makes sense to have this as an in-built option within the plugin. Event organisers will want to receive the RSVPs so they can plan their event accurately…

    @manawatuhomeeducators yes it is.

    you’ve add some more email options to the mail header, but you’ve right, as a non-developer, of course, it’s not that easy to implement.

    but with this solution it’s possible (with some code changes) to get the organizer of an event and with the organizer id you can get the email of the organizer and add the mail to this function

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Specify RSVP email address recipient’ is closed to new replies.