Codeigniter SMTP Email with Amazon SES
I think yesterday Amazon announced SMTP support for SES (Simple Email Service). I tried to send SMTP email with Codeigniter with no luck. I have a verified sender and everything looks good: $this->load->library('email'); $config = array( 'protocol' => 'smtp', 'smtp_host' => 'email-smtp.us-east-1.amazonaws.com', 'smtp_user' => 'SMTP USERNAME', 'smtp_pass' => 'SMTP PASSWORD', 'smtp_port' => 465, 'mailtype' => 'html' ); $this->email->initialize($config); $this->email->print_debugger(); $this->email->from('verified_email_address@something.com', 'Test From'); $this->email->to('email@example.com',