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 ?
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
});