使用codeigniter发送电子邮件时出错? [英] error during sending email with codeigniter?

查看:99
本文介绍了使用codeigniter发送电子邮件时出错?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

codeigniter未发送电子邮件。请检查并确认错误。
我的控制器代码是:

Email is not sent by codeigniter.please check and identify the erros. MY controller code is:

$config = Array(
  'protocol' => 'smtp',
  'smtp_host' => 'ssl://smtp.googlemail.com',
  'smtp_port' => 465,
  'smtp_user' => 'bilalshabbir3210@gmail.com', // change it to yours
  'smtp_pass' => 'my pasword', // change it to yours
  'mailtype' => 'html',
  'charset' => 'iso-8859-1',
  'wordwrap' => TRUE
);

        $message = '<h4>Email comessss</h4>';
        $this->load->library('email', $config);
      $this->email->set_newline("\r\n");
      $this->email->from('bilalshabbir3210@gmail.com'); // change it to yours
      $this->email->to('bilalshabbir0909@gmail.com');// change it to yours
      $this->email->subject('Resume from JobsBuddy for your Job posting');
      $this->email->message($message);
      if($this->email->send())
     {
      echo 'Email sent.';
     }
     else
    {
     show_error($this->email->print_debugger());
    }

出现错误:
[]

And error comes: []

在此处输入图像描述

推荐答案

请使用以下设置,此设置与google配合得很好

Please use the following settings, this work very well with google

$config = array(
    'protocol'      => 'smtp',
    'smtp_host'     => 'smtp.gmail.com',
    'smtp_port'     => 465,
    'smtp_crypto'   => 'ssl',

    'smtp_timeout'  => '30',
    'smtp_user'     => 'your_mail@gmail.com',   // change it to yours
    'smtp_pass'     => 'your_gmail_password',   //  change it to yours
    'charset'       => 'iso-8859-1',
    'crlf'          => "\r\n",
    'newline'       => "\r\n",
    'mailtype'      => 'html',
    'wordwrap'      => TRUE
);
$this->load->library('email', $config);

$this->email->from('your_mail@gmail.com');      //  change it to yours
$list = array('destination_list@gmail.com');    //  change it to yours
$this->email->to($list);
$this->email->subject('This is an email test');

$message = '<h4>Email comessss</h4>';
$this->email->message($message);
if($this->email->send())
{
    echo 'Email sent.';
} else {
    show_error($this->email->print_debugger());
}

这篇关于使用codeigniter发送电子邮件时出错?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆