How to programmatically send additional notification emails in Contact form 7 [closed]

You can manipulate recipients just before sending out the emails with the hook wpcf7_before_send_mail. Here is a simple script that adds an extra recipient: add_action( ‘wpcf7_before_send_mail’, ‘add_my_second_recipient’, 10, 1 ); function add_my_second_recipient($instance) { $properites = $instance->get_properties(); // use below part if you want to add recipient based on the submitted data /* $submission = WPCF7_Submission::get_instance(); … Read more

Contact form 7 dynamic text extension – populate form with title from previous page [closed]

There are two steps to this process: 1. Make sure you have your form set up correctly. Your form should include the ‘dynamictext’ tag, and use the correct syntax as described on the plugin page. For example, you may want something like: [dynamictext theproductname “CF7_GET key=’foo'”] This will set anything after the “foo” $_GET URL … Read more