在网站中怎么用QQ邮箱发邮件?
php代码
$this->load->library('email');
$this->email->from('xxxxx@qq.com'); $this->email->to('xxxxxx@qq.com'); $this->email->subject('Email Test'); $this->email->message('Testing the email class.'); $this->email->send(); echo $this->email->print_debugger();
php.ini 的配置如下
[mail function]
; For Win32 only.
; http://php.net/smtp
SMTP = smtp.qq.com
; http://php.net/smtp-port
smtp_port = 25
; For Win32 only.
; http://php.net/sendmail-from
;sendmail_from = me@example.com
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
;sendmail_path =
发送后提示成功但是收不到
Your message has been successfully sent using the following protocol: mail
|