コード例 #1
0
ファイル: Mail.php プロジェクト: nagiro/Entrades
 /**
  * Send
  *
  * @return none - sends the email.
  */
 public function send()
 {
     $this->AltBody = strip_tags(stripslashes($this->Body)) . "\n\n";
     $this->AltBody = str_replace(" ", "\n\n", $this->AltBody);
     return parent::send();
 }