Disabling email notifications
-
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; }
- The topic ‘Disabling email notifications’ is closed to new replies.