Action Hooks
FluentCRM trigger action hook on different life-cycle of your contact and other modules. Contact Specific Actions Hooks <?php // New contact created do_action(‘fluentcrm_contact_created’, Model $contact); // contact updated do_action(‘fluentcrm_contact_updated’, Model $contact); // contact updated do_action(‘fluentcrm_contact_updated’, Model $contact); // custom fields updated do_action(‘fluentcrm_contact_custom_data_updated’, array $newValues, Model $contact); // Contact added to lists do_action( ‘fluentcrm_contact_added_to_lists’, array $listIds,…