Yii mail extension
'components'=>array(
'email'=>array(
'class'=>'application.extensions.email.Email',
'delivery'=>'php', //Will use the php mailing function.
//May also be set to 'debug' to instead dump the contents of the email into the view
),
...
$email = Yii::app()->email;
$email->to = '[email protected]';
$email->subject = 'Hello';
$email->message = 'Hello brother';
$email->send();
<?php $this->widget('application.extensions.email.debug'); ?>