1<?php23/**4* The SMTP class has been moved to the wp-includes/PHPMailer subdirectory and now uses the PHPMailer\PHPMailer namespace.5*/6_deprecated_file(7basename( __FILE__ ),8'5.5.0',9WPINC . '/PHPMailer/SMTP.php',10__( 'The SMTP class has been moved to the wp-includes/PHPMailer subdirectory and now uses the PHPMailer\PHPMailer namespace.' )11);1213require_once __DIR__ . '/PHPMailer/SMTP.php';1415class_alias( PHPMailer\PHPMailer\SMTP::class, 'SMTP' );16