コード例 #1
0
 public function __construct() {
     parent::__construct();
     $this->mailTemplateFile = 'merchant_contact_us.stpl';
     $this->isHtmlMail = true;
     $this->templateName = Gpf_Lang::_runtime('Merchant - Affiliate filled Contact us form');
     $this->subject = Gpf_Lang::_runtime('Affiliate filled Contact us form');
 }
コード例 #2
0
 public function __construct() {
     parent::__construct();
     $this->mailTemplateFile = 'merchant_new_user_signup.stpl';
     $this->isHtmlMail = true;
     $this->templateName = Gpf_Lang::_runtime('Merchant - New User Signup');
     $this->subject = Gpf_Lang::_runtime('New user signed up');
 }
コード例 #3
0
 public function __construct() {
     parent::__construct();
     $this->mailTemplateFile = 'new_user_signup_approved.stpl';
     $this->isHtmlMail = true;
     $this->templateName = Gpf_Lang::_runtime('Affiliate - New User Signup Approved');
     $this->subject = '{$firstname}' . Gpf_Lang::_runtime(', welcome to our affiliate program');
 }
 public function __construct() {
     parent::__construct();
     $this->mailTemplateFile = 'autoregisteringaffiliates_affiliate_on_first_sale.stpl';
     $this->isHtmlMail = true;
     $this->templateName = Gpf_Lang::_runtime('Auto Registering Affiliates - Affiliate - First Sale / Lead');
     $this->subject = Gpf_Lang::_runtime('Welcome to our affiliate program - First Sale / Lead');
 }
コード例 #5
0
 public function __construct() {
     parent::__construct();
     $this->mailTemplateFile = 'on_payout.stpl';
     $this->isHtmlMail = true;
     $this->templateName = Gpf_Lang::_runtime('Affiliate - On payout');
     $this->subject = Gpf_Lang::_runtime('Your commissions');
 }
コード例 #6
0
 public function __construct() {
     parent::__construct();
     $this->mailTemplateFile = 'affiliate_direct_link_notification.stpl';
     $this->isHtmlMail = true;
     $this->templateName = Gpf_Lang::_runtime('Affiliate - DirectLink Notification');
     $this->subject = Gpf_Lang::_runtime('DirectLink notification');
 }
コード例 #7
0
 public function __construct() {
     parent::__construct();
     $this->mailTemplateFile = 'on_subaffiliate_signup.stpl';
     $this->isHtmlMail = true;
     $this->templateName = Gpf_Lang::_runtime('Affiliate - New Subaffiliate signup');
     $this->subject = Gpf_Lang::_runtime('New subaffiliate signed up');
 }
コード例 #8
0
 public function __construct() {
     parent::__construct();
     $this->mailTemplateFile = 'new_user_signup_declined.stpl';
     $this->isHtmlMail = true;
     $this->templateName = Gpf_Lang::_runtime('Affiliate - New User Signup Declined');
     $this->subject = Gpf_Lang::_runtime('You have been declined in affiliate program');
 }
 /**
  * @param $directLink can be null only in update step and create account task
  */
 public function __construct(Pap_Db_DirectLinkUrl $directLink = null) {
     parent::__construct();
     $this->mailTemplateFile = 'merchant_new_direct_link_notification.stpl';
     $this->isHtmlMail = true;
     $this->templateName = Gpf_Lang::_runtime('Merchant - New DirectLink Notification');
     $this->subject = Gpf_Lang::_runtime('New DirectLink notification');
     $this->directLink = $directLink;
 }
コード例 #10
0
 public function __construct() {
     parent::__construct();
 }
コード例 #11
0
 public function __construct() {
     parent::__construct();
     $this->isHtmlMail = true;
 }
コード例 #12
0
 public function __construct() {
     parent::__construct();        
     $this->isHtmlMail = true;        
     $this->subject = Gpf_Lang::_runtime('Invoice');
     $this->init();
 }    
コード例 #13
0
	public function __construct(Pap_Stats_Params $statsParams = null) {
		parent::__construct($statsParams);
		$this->initTemplate();
		$this->isHtmlMail = true;
	}