That was perfect. Thank you!
I added this in the theme’s functions.php and it works like a charm :
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: insert_newsletter_subscriber() is a custom function I wrote.)