コード例 #1
0
ファイル: NativeMail.php プロジェクト: dev-lav/htdocs
 /**
  * Set the 5th parameter in mail() as a sprintf() formatted string. Only used if safe_mode is off.
  * @param string
  */
 public function setAdditionalMailParams($params)
 {
     $this->pluginParams = $params;
     if ($this->plugin !== null) {
         $this->plugin->setAdditionalParams($params);
     }
 }
コード例 #2
0
 /**
  * Ctor.
  * @param UnitTestCase The instance of the test being executed.
  */
 public function __construct($test)
 {
     parent::__construct();
     $this->testcase = $test;
 }