class-smtp.php 457 B

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