コード例 #1
0
ファイル: newsletter.php プロジェクト: shannara/banshee
 public function __construct($subject, $from_address = null, $from_name = null)
 {
     $subject = utf8_decode($subject);
     array_push($this->footers, "Banshee website: <a href=\"http://" . $_SERVER["SERVER_NAME"] . "/\">" . $_SERVER["SERVER_NAME"] . "</a>");
     array_push($this->footers, "To unsubscribe from this newsletter, click <a href=\"http://" . $_SERVER["SERVER_NAME"] . "/newsletter\">here</a>.");
     parent::__construct($subject, $from_address, $from_name);
 }