/**
  * Instantiate the email class, defining its key values.
  *
  * @param   mixed[]  $objects
  * @access  public
  * @since   1.0.0
  */
 public function __construct($objects = array())
 {
     parent::__construct($objects);
     $this->name = apply_filters('charitable_email_new_donation_name', __('Admin: New Donation Notification', 'charitable'));
 }
 /**
  * Instantiate the email class, defining its key values.
  *
  * @param   mixed[]  $objects
  * @access  public
  * @since   1.1.0
  */
 public function __construct($objects = array())
 {
     parent::__construct($objects);
     $this->name = apply_filters('charitable_email_campaign_end_name', __('Campaign Ended Notification', 'charitable'));
 }
 /**
  * Instantiate the email class, defining its key values.
  *
  * @param   array   $objects
  * @access  public
  * @since   1.0.0
  */
 public function __construct($objects = array())
 {
     parent::__construct($objects);
     $this->name = apply_filters('charitable_email_donation_receipt_name', __('Donation Receipt', 'charitable'));
 }
 /**
  * Instantiate the email class, defining its key values.
  *
  * @param   mixed[] $objects
  * @access  public
  * @since 	1.4.0
  */
 public function __construct($objects = array())
 {
     parent::__construct($objects);
     $this->name = apply_filters('charitable_email_password_reset_name', __('User: Password Reset', 'charitable'));
     $this->user = isset($objects['user']) ? $objects['user'] : false;
 }