예제 #1
0
 /**
  * changes from for Member_ForgotPasswordEmail to SilvercartConfig email sender
  * converts subject to ISO-8859-1
  * 
  * @return void
  * 
  * @author Patrick Schneider <*****@*****.**>
  * @since 16.08.2012 
  */
 public function __construct()
 {
     parent::__construct();
     $this->setSubject(iconv("UTF-8", "ISO-8859-1", $this->Subject()));
     // convert to iso because of some old mail clients
     $this->setFrom(SilvercartConfig::EmailSender());
 }