1<?php
2
3/**
4 * The PHPMailer class has been moved to the wp-includes/PHPMailer subdirectory and now uses the PHPMailer\PHPMailer namespace.
5 */
6if ( function_exists( '_deprecated_file' ) ) {
7 _deprecated_file(
8 basename( __FILE__ ),
9 '5.5.0',
10 WPINC . '/PHPMailer/PHPMailer.php',
11 __( 'The PHPMailer class has been moved to wp-includes/PHPMailer subdirectory and now uses the PHPMailer\PHPMailer namespace.' )
12 );
13}
14
15require_once __DIR__ . '/PHPMailer/PHPMailer.php';
16require_once __DIR__ . '/PHPMailer/Exception.php';
17
18class_alias( PHPMailer\PHPMailer\PHPMailer::class, 'PHPMailer' );
19class_alias( PHPMailer\PHPMailer\Exception::class, 'phpmailerException' );
20