File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
/home/pharmacy/public_html/wp-content/plugins/sendpress/classes/class-sendpress-phpmailer.php
<?php 


// Prevent loading this file directly
if ( !defined('SENDPRESS_VERSION') ) {
	header('HTTP/1.0 403 Forbidden');
	die;
}	




global $wp_version;
if ( version_compare( $wp_version, '5.5', '>=' ) ) {
    if(!class_exists('PHPMailer\PHPMailer\PHPMailer')) {
        require(ABSPATH . WPINC .'/PHPMailer/PHPMailer.php');
        require(ABSPATH . WPINC . '/PHPMailer/SMTP.php');
        require(ABSPATH . WPINC . '/PHPMailer/Exception.php');
    }

    class SendPress_PHPMailer extends PHPMailer\PHPMailer\PHPMailer {

    }
} else {
    if(!class_exists('PHPMailer')) {
        require(ABSPATH . WPINC . '/class-phpmailer.php');
    }
    class SendPress_PHPMailer extends PHPMailer {

    }
}