如果你觉得,围着你的都是苍蝇,那可能你自己是坨屎。

文章列表

1-2条,共2条数据.

SMTP Error: Could not connect to SMTP host...解决方法

Written by Quinn Pan on 2014年3月28日 12:03:28. Posted in 网站开发

本方法总结自网上的所有方法,然后加上自己的整理。希望大家一定要看完。 首先写一段代码,确定问题: <?php $fp = fsockopen("smtp.163.com",25,&$errno,&$errstr,60); if(! $fp) echo '$errstr ($errno) <br> \n '; else echo 'ok <br> \n '; ?> 然后保存为test.php 方法一:如果输出为ok,...



yii中发送邮件组件mailer的配置和使用

Written by Quinn Pan on 2014年3月27日 19:03:23. Posted in 网站开发

经过自己的摸索发现在yii中有一个很实用的e-mail发送插件——malier。下载地址是http://www.yiiframework.com/extension/mailer/。下载后,将文件解压在protected/extensions文件夹下。然后有两种方法使用 方法一:当做系统组件使用。 现在配置文件main.php中做一下配置。 <?php 'components'=>array( 'mailer' => array( ...