public function __construct() {
     parent::__construct();
     $this->mailTemplateFile = 'pay_day_reminder.stpl';
     $this->templateName = Gpf_Lang::_runtime('Merchant - Pay day reminder');
     $this->subject = Gpf_Lang::_runtime('Pay day reminder');
     $this->payAffiliatesList = new Pap_Mail_PayDayReminder_PayAffiliatesList();
 }
 public function __construct()
 {
     parent::__construct();
     $this->mailTemplateFile = 'email_account_test_mail.stpl';
     $this->isHtmlMail = true;
     $this->templateName = Gpf_Lang::_runtime('Email account test mail');
     $this->subject = $this->templateName;
 }
 public function __construct($saleId = null) {
     parent::__construct();
     $this->mailTemplateFile = 'splitcommissions_merchant_on_sale.stpl';
     $this->isHtmlMail = true;
     $this->templateName = Gpf_Lang::_runtime('Split Commission Merchant - New Sale / Lead');
     $this->subject = Gpf_Lang::_runtime('New sale summary mail');
     $this->saleId = $saleId;
 }
 public function __construct($url = null, Gpf_Db_AuthUser $user = null)
 {
     parent::__construct();
     $this->mailTemplateFile = 'email_request_new_password.stpl';
     $this->isHtmlMail = true;
     $this->templateName = Gpf_Lang::_runtime('Request new password');
     $this->subject = $this->templateName;
 }
예제 #5
0
 public function __construct(Pap_Stats_Params $statsParams = null) {
     if (is_null($statsParams)) {
         $this->statsParams = new Pap_Stats_Params();
     } else {
         $this->statsParams = $statsParams;
         
     }
     
     parent::__construct();
     $this->isHtmlMail = true;
 }
예제 #6
0
 public function __construct() {
     parent::__construct();
     $this->isHtmlMail = false;
 }