Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bhubbard/7363581 to your computer and use it in GitHub Desktop.
Save bhubbard/7363581 to your computer and use it in GitHub Desktop.
add_action("wpcf7_before_send_mail", "wpcf7_do_something_else");
function wpcf7_do_something_else(&$wpcf7_data) {
// Here is the variable where the data are stored!
var_dump($wpcf7_data);
// If you want to skip mailing the data, you can do it...
$wpcf7_data->skip_mail = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment