kollapsminoriteten/wp-includes/class-smtp.php

16 lines
457 B
PHP
Raw Normal View History

2019-11-02 10:38:58 +01:00
<?php
/**
2020-09-15 14:29:22 +02:00
* The SMTP class has been moved to the wp-includes/PHPMailer subdirectory and now uses the PHPMailer\PHPMailer namespace.
2019-11-02 10:38:58 +01:00
*/
2020-09-15 14:29:22 +02:00
_deprecated_file(
basename( __FILE__ ),
'5.5.0',
WPINC . '/PHPMailer/SMTP.php',
__( 'The SMTP class has been moved to the wp-includes/PHPMailer subdirectory and now uses the PHPMailer\PHPMailer namespace.' )
);
2019-11-15 22:59:44 +01:00
2021-04-27 08:32:47 +02:00
require_once __DIR__ . '/PHPMailer/SMTP.php';
2019-11-15 22:59:44 +01:00
2020-09-15 14:29:22 +02:00
class_alias( PHPMailer\PHPMailer\SMTP::class, 'SMTP' );