Liia Ram

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Event Tickets Plus | Email Notifications #1496432
    Liia Ram
    Participant

    Victor,

    Thanks for the filter. I’m using this now and it’s working, not what I was looking for but it will do for now. Hopefully this functionality can get implemented in future releases where an email get’s sent out to an administrator or the event organizer.

    
    <?php
    /**
     * BCC custom email on all Event Tickets' purchased
     */
    function add_bcc_email_headers( $headers ) {
      
      // Define who gets bcc'd
      $bcc = "Custom Name <[email protected]>";
      $headers[] = sprintf( 'Bcc: %s', $bcc );
      
      return $headers;
    }
    add_filter( 'tribe_tpp_email_headers', 'add_bcc_email_headers', 10, 1 );
    in reply to: Event Tickets Plus | Email Notifications #1493107
    Liia Ram
    Participant

    Victor,

    I’ve done several test. Unfortunately the snippet doesn’t work when a ticket is purchased it only works if you RSVP.

    in reply to: Event Tickets Plus | Email Notifications #1492279
    Liia Ram
    Participant

    Victor,

    This snippet only works when a user RSVP’s for an event. I’m using Event Tickets Plus and using Tribe Commerce for payment.

Viewing 3 posts - 1 through 3 (of 3 total)