I'm not able to send mail using smtp in Codeigniter.
getting an error :
hello: The following SMTP error was encountered: Unable to send email using PHP SMTP. Your server might not be configured to send mail using this method.
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| SMTP EMAIL DETAILS
| -------------------------------------------------------------------
| This file contains an array of smtp email settings.It is used by send emails functions.
|
*/
$config['email'] = Array(
'protocol' => 'smtp',
'smtp_host' => 'email-smtp.us-east-1.amazonaws.com',
'smtp_port' => '465',
'smtp_timeout' => '30',
'smtp_user' => 'my user name',
'smtp_pass' => 'my password',
'charset' => 'utf-8',
'wordwrap' => TRUE,
'mailtype' => 'html',
'newline' => "\r\n",
'validation' => TRUE
);
?>
mail.php file, what wrong with this?