Welcome Guest, Not a member yet? Register   Sign In
Problema send mail
#6

[eluser]Clooner[/eluser]
[quote author="Alex Jurado" date="1343667320"]Now get an error,
Code:
You did not specify a SMTP hostname.
Unable to send email using PHP SMTP. Your server might not be configured to send mail using this method.

Code:
$this->load->library(
   'email',
   array(
    'protocol'  => 'smtp',
    'SMTP'      => 'pod5xxxx.outlook.com',
    'smtp_port' => 587
   )
  );
  
        $this->email->from('[email protected]', 'Alex');
        $this->email->to('[email protected]');
        $this->email->subject('Email Test');
        $this->email->message('Testing the email class.');
        $this->email->send();
        echo $this->email->print_debugger();

[/quote]
See the manual how to correctly configure the email library for using a smtp server. It's all there http://ellislab.com/codeigniter/user-gui...email.html


Messages In This Thread
Problema send mail - by El Forum - 07-30-2012, 08:21 AM
Problema send mail - by El Forum - 07-30-2012, 09:08 AM
Problema send mail - by El Forum - 07-30-2012, 09:27 AM
Problema send mail - by El Forum - 07-30-2012, 09:45 AM
Problema send mail - by El Forum - 07-30-2012, 09:55 AM
Problema send mail - by El Forum - 07-30-2012, 09:56 AM



Theme © iAndrew 2016 - Forum software by © MyBB