• Resolved xroox

    (@xroox)


    As title says,

    If someone only fills out two of four steps, I would still like to receive the email. Is there a way to accomplish this?

    If not, could anyone recommend a solution for this?

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author webheadcoder

    (@webheadllc)

    You can try providing multiple buttons. One to say continue and one to say finish. This plugin isn’t able to do that though.

    Thread Starter xroox

    (@xroox)

    Ok thanks. ??

    Plugin Author webheadcoder

    (@webheadllc)

    Just tried something. You can add this to your theme’s functions.php file and you’ll get email after each Contact Form 7 is submitted:

    /**
     * Always receive an email when a CF7 form is submitted.
     */
    function my_wpcf7_posted_data_filter( $posted_data ) {
        $wpcf7 = WPCF7_ContactForm::get_current();
        $wpcf7->skip_mail = false;
        return $posted_data;
    }
    add_filter( 'wpcf7_posted_data', 'my_wpcf7_posted_data_filter' );
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Can I get email on partially completed multi-step forms?’ is closed to new replies.