예제 #1
0
파일: User.php 프로젝트: bsa-git/zf-myblog
 /**
  * Send email
  *
  * @param array $aMail
  */
 public function sendEmail(array $aMail)
 {
     //Отправим почту
     Default_Plugin_SysBox::sendMail(array('to' => array('email' => $this->profile->email, 'name' => trim($this->profile->first_name . ' ' . $this->profile->last_name)), 'subject' => $aMail['subject'], 'body' => $aMail['body']));
 }