Replies: 0
I have figured out how to do this, so I have added it here in case it helps someone else.
add_filter( 'gform_pre_send_email', 'val_disable_update_email' );
function val_disable_update_email( $email ) {
if ( isset( $_GET['gform_post_id'] ) ) {
$email['abort_email'] = true;
}
return $email;
}
-
This topic was modified 8 minutes ago by
valerio_cas.