HEX
Server: Apache/2.4.57 (Ubuntu) mod_fcgid/2.3.9 OpenSSL/3.0.2
System: Linux vmi267337.contaboserver.net 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
User: ohirex (1008)
PHP: 8.2.8
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,exec,system,passthru,shell_exec
Upload Files
File: /home/ohirex/web/ohirex.com/public_html/wp-content/plugins/mailster/classes/mail.helper.class.php
<?php

if ( file_exists( ABSPATH . WPINC . '/PHPMailer/PHPMailer.php' ) ) :

	if ( ! class_exists( 'PHPMailer', false ) ) {
		require_once ABSPATH . WPINC . '/PHPMailer/PHPMailer.php';
		class_alias( PHPMailer\PHPMailer\PHPMailer::class, 'PHPMailer' );
	}
	if ( ! class_exists( 'phpmailerException', false ) ) {
		require_once ABSPATH . WPINC . '/PHPMailer/Exception.php';
		class_alias( PHPMailer\PHPMailer\Exception::class, 'phpmailerException' );
	}

	if ( ! class_exists( 'SMTP', false ) ) {
		require_once ABSPATH . WPINC . '/PHPMailer/SMTP.php';
		class_alias( PHPMailer\PHPMailer\SMTP::class, 'SMTP' );
	}

	class _mailster_SMTP extends SMTP {}
	class _mailster_mail_helper extends PHPMailer {}
	class _mailster_phpmailerException extends phpmailerException {}

else :

	global $phpmailer;
	if ( ! is_object( $phpmailer ) || ! $phpmailer instanceof PHPMailer ) {
		require_once ABSPATH . WPINC . '/class-phpmailer.php';
		$phpmailer = new PHPMailer( true );
	}
	if ( ! class_exists( 'SMTP' ) ) {
		require_once ABSPATH . WPINC . '/class-smtp.php';
	}

	class _mailster_SMTP extends SMTP {}
	class _mailster_mail_helper extends PHPMailer {}
	class _mailster_phpmailerException extends phpmailerException {}

endif;
#[AllowDynamicProperties]
// this class extends PHPMailer and offers some fixes
class mailster_mail_helper extends _mailster_mail_helper {



	/**
	 *
	 *
	 * @param unknown $exceptions (optional)
	 */
	public function __construct( $exceptions = false ) {
		$this->XMailer     = 'Mailster ' . MAILSTER_VERSION . ' (' . MAILSTER_VERSION . ')';
		$this->CharSet     = mailster_option( 'charset', 'UTF-8' );
		$this->Encoding    = mailster_option( 'encoding', '8bit' );
		$this->Ical        = apply_filters( 'mailster_ical', '' );
		$this->SMTPDebug   = 0; // 0 = off, 1 = commands, 2 = commands and data
		$this->SMTPOptions = apply_filters(
			'mymail_smtp_options',
			apply_filters( 'mailster_smtp_options', mailster_option( 'allow_self_signed' ) )
			? array(
				'ssl' => array(
					'verify_peer'       => false,
					'verify_peer_name'  => false,
					'allow_self_signed' => true,
				),
			) : array()
		);
		$this->Debugoutput = 'error_log'; // Options: "echo", "html" or "error_log;
		$this->AllowEmpty  = true;
		parent::__construct( $exceptions );
	}


	/**
	 *
	 *
	 * @return unknown
	 */
	public function setAsSMTP() {

		if ( ! is_object( $this->smtp ) ) {
			$this->smtp = new _mailster_SMTP();
		}
		return $this->smtp;
	}


	/**
	 *
	 *
	 * @param unknown $address
	 * @param unknown $patternselect (optional)
	 * @return unknown
	 */
	public static function ValidateAddress( $address, $patternselect = 'auto' ) {
		return mailster_is_email( $address );
	}


	/**
	 *
	 *
	 * @return unknown
	 */
	public function PreSend() {

		try {
			return parent::PreSend();

		} catch ( _mailster_phpmailerException $e ) {
			$this->SetError( $e->getMessage() );
			if ( $this->exceptions ) {
				throw $e;
			}
			return false;
		}
	}


	/**
	 *
	 *
	 * @param unknown $text
	 * @param unknown $breaktype (optional)
	 * @return unknown
	 */
	public static function normalizeBreaks( $text, $breaktype = "\r\n" ) {
		return preg_replace( '/(\r\n|\r|\n)/ms', $breaktype, $text );
	}


	/**
	 *
	 *
	 * @param unknown $html
	 * @param unknown $advanced (optional)
	 * @return unknown
	 */
	public function html2text( $html, $advanced = false ) {

		preg_match( '#<body[^>]*>.*?<\/body>#is', $html, $matches );

		if ( ! empty( $matches ) ) {
			$html = $matches[0];
		}

		$text       = preg_replace( '# +#', ' ', $html );
		$text       = str_replace( array( "\n", "\r", "\t" ), '', $text );
		$piclinks   = '/< *a[^>]*href *= *"([^#][^"]*)"[^>]*> *< *img[^>]*> *< *\/ *a *>/Uis';
		$style      = '#< *style(?:(?!< */ *style *>).)*< */ *style *>#isU';
		$strikeTags = '#< *strike(?:(?!< */ *strike *>).)*< */ *strike *>#iU';
		$headlines  = '#< *(h1|h2)[^>]*>#Ui';
		$stars      = '#< *li[^>]*>#Ui';
		$return1    = '#< */ *(li|td|tr|div|p)[^>]*> *< *(li|td|tr|div|p)[^>]*>#Ui';
		$return2    = '#< */? *(br|p|h1|h2|legend|h3|li|ul|h4|h5|h6|tr|td|div)[^>]*>#Ui';
		$links      = '/< *a[^>]*href *= *"([^#][^"]*)"[^>]*>(.*)< *\/ *a *>/Uis';
		$text       = preg_replace( array( $piclinks, $style, $strikeTags, $headlines, $stars, $return1, $return2, $links ), array( '${1}' . "\n", '', '', "\n\n", "\n&#x25CF; ", "\n", "\n", '${2} ( ${1} )' ), $text );
		$text       = str_replace( '&nbsp;', ' ', strip_tags( $text ) );
		$text       = trim( @html_entity_decode( $text, ENT_QUOTES, $this->CharSet ) );
		$text       = preg_replace( '# +#', ' ', $text );
		$text       = preg_replace( '#\n *\n\s+#', "\n\n", $text );

		return html_entity_decode(
			$text,
			ENT_QUOTES,
			$this->CharSet
		);
	}
}


class mailerException extends Exception {}