一、申请163邮箱,开通SMTP服务,获取授权码。
二、在php.ini开启php_openssl.dll和php_sockets.dll。
三、配置yii-mail。把yii-mail包放在extensions文件夹下,在配置文件main.php中配置如下代码:
'import'=>array(
'application.extensions.yii-mail.*',
),
'components'=>array(
'mail'=>array(
'class' => 'application.extensions.yii-mail.YiiMail',
'viewPath' => 'application.views.mail',
'logging' => true,
'dryRun' => false,
'transportType'=>'smtp', // case sensitive!
'transportOptions'=>array(
'host'=>'smtp.163.com', // smtp服务器
'username'=>'chenlingeek@163.com', // 验证用户
'password'=>'Aa156588103', // 验证密码
'port'=>'25', // 端口号
//'encryption'=>'ssl',
),
),
),
四、实现发送邮件代码。
$message = new YiiMailMessage();
$message->setFrom('送信人');
$message->setTo('收信人');
$message->setSubject('标题');
$message->setBody('正文','text/html');
$swiftAttachment = Swift_Attachment::fromPath($file_path); //附件
$message->attach($swiftAttachment);
$sendmail = Yii::app()->mail->send($message) ;