• How do I make it so I receive an email when a user registers?

    The reason for this is that I am allowing offline payments by letting ticket purchases be submitted as “pending” until payment is verified. I don’t want use the coupon method because I want to be able to track who has or has not yet paid (in the case of mailed cheques) and for my revenue reports to be accurate.

    https://wordpress.org/plugins/camptix/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Ian Dunn

    (@iandunn)

    The plugin isn’t designed to work that way, so you’d have to write some custom code to make it happen.

    Thread Starter theophila

    (@theophila)

    Is there some way so that I can receive an email at all when people buy a ticket? This is the first registration plugin I’ve used that doesn’t have that option.

    Thread Starter theophila

    (@theophila)

    Also, I’ve noticed in your code that you have:

    // If the status is pending, let the buyer know about that in the receipt.
                if ( 'pending' == $to_status )
                    $payment_status =  sprintf( __( 'Your payment status is: %s. You will receive a notification e-mail once your payment is completed.', 'camptix' ), 'pending' ) . "\n\n";

    But you don’t actually use it anywhere, so none of the emails that are sent out to the attendee actually state pending status.

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

The topic ‘Send email for pending’ is closed to new replies.