PHPMailer\PHPMailer

PHPMailer::isSMTP()publicWP 1.0

Send messages using SMTP.

Method of the class: PHPMailer{}

No Hooks.

Return

null. Nothing (null).

Usage

$PHPMailer = new PHPMailer();
$PHPMailer->isSMTP();

PHPMailer::isSMTP() code WP 6.5.2

public function isSMTP()
{
    $this->Mailer = 'smtp';
}