Email_Notifications::store_phpmailer_error( WP_Error $error )

Stores an error object as the internal PHPMailer error.

Description

Parameters

$error

(WP_Error) (Required) Error object.

Source

File: src/modules/actions/email-notifications.php

	public function store_phpmailer_error( $error ) {
		$this->phpmailer_error = $error;
	}

Changelog

Changelog
Version Description
1.0.0 Introduced.