$config = Array(
'protocol' => 'smtp',
'smtp_host' => 'ssl://smtp.googlemail.com',
'smtp_port' => 465,
'smtp_user' => '[email protected]',// your mail name
'smtp_pass' => '*****',
'mailtype' => 'html',
'charset' => 'iso-8859-1',
'wordwrap' => TRUE
);
then
$this->load->library('email', $config);
Mail Settings in XAMPP(Impotent)
$this->email->from('[email protected]', 'myname');//your mail address and name
$this->email->to('[email protected]'); //receiver mail
$this->email->subject('testing');
$this->email->message($message);
$this->email->send(); //sending mail
Configuration in sendmail.ini
path c:xamppsendmailsendmail.ini
Configurations
[sendmail]
smtp_server=smtp.gmail.com
smtp_port=25
error_logfile=error.log
debug_logfile=debug.log
[email protected]
auth_password=yourgmailpassword
[email protected]
in php.ini
pathc:xamppxamppphpphp.ini
[mail function]
sendmail_path = ""C:xamppsendmailsendmail.exe" -t"
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…