Viewing 11 posts - 1 through 11 (of 11 total)
The topic ‘SMTP Configuration for Amazon SES’ is closed to new replies.
We have a server setup running v1.10.0 and we want to send emails using Amazon SES, what would be the right setup for this?
I have tried to configure this on application/config/email.php using the following configuration values, but always get an error message when trying to send an email (password reset email for instance):
$config['useragent'] = 'CodeIgniter';
$config['protocol'] = 'smtp';
$config['smtp_host'] = 'tls://email-smtp.us-west-2.amazonaws.com';
$config['smtp_user'] = 'my_smtp_user'
$config['smtp_pass'] = 'xxxxxx'
$config['smtp_port'] = '465';
$config['smtp_crypto'] = 'tls';
$config['mailtype'] = 'html';
$config['newline'] = "\r\n";
The topic ‘SMTP Configuration for Amazon SES’ is closed to new replies.