リンク
The Center for Innovation, Testing & Evaluation (CITE) |Services & Solutions | Pegasus Global Holdings»
リンク
America's Most Innovative Neighborhood: 15 Square Miles In New Mexico, Population: 0 | Fast Company»
引用
* How to insert contact name and email in database after sucessfull submission?
Contact Form 7 has many action/filter hooks in its code. So, if you are familiar with WordPress plugin development, you can use them to save data into DB. best hook for it at wpcf7_before_send_mail in includes/classes.php
Example:
add_action( ‘wpcf7_before_send_mail’, ‘my_conversion’ );
function my_conversion( $cf7 )
{
$email = $cf7->posted_data["your-email"];
$name = $cf7->posted_data["your-name"];
insert_newsletter_subscriber($email, $name);
}
Note: You need to write your own insert_newsletter_subscriber()



