dizballanze

Untitled

Jan 12th, 2012
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.57 KB | None | 0 0
  1.     /**
  2.      * Отправляем email об активации
  3.      * @param User $user
  4.      */
  5.     protected function sendActivationMail(User $user){
  6.         $headers = 'MIME-Version: 1.0' . "\r\n"
  7.                  . 'Content-type: text/html; charset=UTF-8' . "\r\n"
  8.                  . 'From: Framekit <robot@'. $_SERVER['SERVER_NAME'] . '>' . "\r\n";
  9.         $text = $this->renderPartial('activation_letter', array('code'=>$user->getActivationCode(), 'id'=>$user->id), true);
  10.         mail($user->email, 'Активация аккаунта Framekit', $text, $headers);
  11.     }
Advertisement
Add Comment
Please, Sign In to add comment