Search code examples
wordpresscontact-form-7

Wordpress Contact form 7: can I send 3 different emails?


I have a contact form where people register his friend. The form sends the information to me and thank you email to user which register his friend , but I need send one more email to his friend with a different text . Is that possible with contact form 7 ?


Solution

  • Contact Form 7 has a wpcf7_mail_sent hook for this.

    // ...in functions.php
    add_action('wpcf7_mail_sent', function ($cf7) {
        // Run code after the email has been sent
    });