Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 130709

Disabling email notifications

$
0
0

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.

Viewing all articles
Browse latest Browse all 130709

Trending Articles