Skip to content

Instantly share code, notes, and snippets.

@New0
Created April 10, 2020 12:16
Show Gist options
  • Save New0/7313c90648fd644b95295c268a8143d1 to your computer and use it in GitHub Desktop.
Save New0/7313c90648fd644b95295c268a8143d1 to your computer and use it in GitHub Desktop.
Example how to get submission data in 'caldera_forms_autoresponse_mail' filter hook.
<?php
/**
* Filter the email sent via the autoresponse processor
*/
add_filter( 'caldera_forms_autoresponse_mail', function( $email_message, $config, $form, $entry_id){
$entry = Caldera_Forms::get_entry($entry_id,$form);
return $email_message;
}, 10, 4 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment