|
楼主 |
发表于 2018-9-23 13:28:36
|
显示全部楼层
下面是代码!!XXX是我隐藏自己的邮箱!
$srand = rand(100000,999999);
echo $srand;
// 配置选项
$config['protocol'] = 'smtp'; // 使用smtp协议
$config['smtp_host'] = 'localhost'; // smtp主机
$config['smtp_port'] = 25;
$this->email->initialize($config); // 写入配置项
$this->email->from('343xxxx32@qq.com','hcc'); // 发送者
$this->email->to('3634xxx64@qq.com'); // 接收者
$this->email->subject('second test'); // 主题
$this->email->message('发送时间:'. date('Y-m-d H:i:s') . $srand); // 内容
echo $this->email->send(); // 发送,发送成功返回true |
|