• Hi! Love this plugin, but I can not get confirmation or notice emails to send. I am receiving emails from WP and I even have added in a working function to send me an email when someone purchases a ticket. I have added in the email debug filter to the functions file and below is a sample log. Any help is appreciated!

    2014-09-24 02:56:59 Created e-mail job with 1 recipients.
    2014-09-24 03:00:37 Executing e-mail job.
    2014-09-24 03:00:37 Could not send e-mail to xxxxxx@gmail.com, removing from queue.
    2014-09-24 03:00:37 Processed 1 recipients. 0 recipients remaining.
    2014-09-24 03:00:37 New tix_email created.
    2014-09-24 03:00:37 Email job complete and published.

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

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

    (@iandunn)

    That means that WordPress’s wp_mail() function is returning false for some reason, possibly because some of the parameters that were passed were invalid.

    Can you try adding this debugging code to a functionality plugin, and letting me know the output?

    function debug_wp_mail_params( $parameters ) {
    	wp_die( esc_html( var_export( $parameters, true ) ) );
    }
    add_filter( 'wp_mail', 'debug_wp_mail_params' );

    If you’ve installed any other plugins that deal with e-mail, make sure you test to see if the problem still happens when they’re disabled.

Viewing 1 replies (of 1 total)

The topic ‘Emails won't send’ is closed to new replies.