class-phpmailer.php 664 B

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