Contact Form 7 wpcf7_mail_sent function not working – can’t capture posted data
-
I used below code for fetch posted data from contact form 7. But its not working. Please help.
add_action( ‘wpcf7_mail_sent’, ‘your_wpcf7_mail_sent_function’ );
function your_wpcf7_mail_sent_function( $contact_form ) {
$submission = WPCF7_Submission::get_instance();
if ( $submission ) {
$posted_data = $submission->get_posted_data();
$yourName = $posted_data[‘your-name’];
$youremail = $posted_data[‘your-email’];
}
}The email is sent but the wpcf7_mail_sent hook not calling.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Contact Form 7 wpcf7_mail_sent function not working – can’t capture posted data’ is closed to new replies.