Hi,
I can access the form submission event and get all the fields data (see the code below). So if I use the plugin is there a filter or hook for me to use to call Dynamic inside this function.
add_action('addify_quote_created', 'dynamics_contact');
function dynamics_contact($quote_id){
$first_name = get_post_meta( $quote_id, 'afrfq_field_first_name', true );
$last_name = get_post_meta( $quote_id, 'afrfq_field_last_name', true );
$email = get_post_meta( $quote_id, 'afrfq_field_email', true );
$subscribe_to_newsletter = get_post_meta( $quote_id, 'afrfq_field_subscribe_to_newsletter', true );
}