[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.143.17.175: ~ $
<?php

namespace MailPoet\Mailer;

if (!defined('ABSPATH')) exit;


class SubscriberError {

  /** @var string */
  private $email;

  /** @var string|null */
  private $message;

  /**
   * @param string $email
   * @param string $message|null
   */
  public function __construct(
    $email,
    $message = null
  ) {
    $this->email = $email;
    $this->message = $message;
  }

  /**
   * @return string
   */
  public function getEmail() {
    return $this->email;
  }

  /**
   * @return null|string
   */
  public function getMessage() {
    return $this->message;
  }

  public function __toString() {
    return $this->message ? $this->email . ': ' . $this->message : $this->email;
  }
}

Filemanager

Name Type Size Permission Actions
Methods Folder 0700
WordPress Folder 0700
Mailer.php File 7.13 KB 0644
MailerError.php File 2.5 KB 0644
MailerLog.php File 6.02 KB 0644
MetaInfo.php File 2.21 KB 0644
SubscriberError.php File 698 B 0644
index.php File 0 B 0644