Home › Forums › WordPress › Emails › Stop all emails.
Tagged: emails, stop, wordpress
function my_action( $phpmailer ) { $phpmailer->ClearAllRecipients(); } add_action( 'phpmailer_init', 'my_action' );
You must be logged in to reply to this topic.