CI使用163邮箱给QQ邮箱发送邮件

    $this->load->library('email'); //加载CI的email类
    //以下设置Email参数
    $config['protocol'] = 'smtp';
    $config['smtp_host'] = 'smtp.163.com';
    $config['smtp_user'] = '[email protected]';//发件人
    $config['smtp_pass'] = 'password';//密码
    $config['smtp_port'] = '25';//端口
    $config['charset'] = 'utf-8';//编码
    $config['validate'] = true;//是否验证邮件地址
    $config['wordwrap'] = TRUE;
    $config['mailtype'] = 'html';//格式
    $this->email->initialize($config);//配置
    //以下设置Email内容
    $this->email->from('[email protected]', 'fanteathy');//(发件人,发件人名称)
    $this->email->to('[email protected]');//收件人
    $this->email->subject('Email Test');//标题
    $this->email->message('test email');//内容
    if($this->email->send()){
        echo 'yes';
    }else{
        echo $this->email->print_debugger();
    }

密码为此处设置的密码:
CI使用163邮箱给QQ邮箱发送邮件_第1张图片
捕获.PNG

你可能感兴趣的:(CI使用163邮箱给QQ邮箱发送邮件)