This hook is run once before any notifications are re-sent (from the View Entry page).
quform_pre_resend_notifications
Example
1 2 3 | add_action('quform_pre_resend_notifications', function (Quform_Form $form, array $entry) { // Custom code }, 10, 2); |
add_action('quform_pre_resend_notifications', function (Quform_Form $form, array $entry) {
// Custom code
}, 10, 2);Parameters
$form–Quform_Form– the form instance$entry–array– the entry data (excluding form values – they are accessible from the$forminstance)
