@@ -34,7 +34,7 @@ and complete the configuration with the provided ``username`` and ``password``:
34
34
swiftmailer :
35
35
transport : smtp
36
36
host : email-smtp.us-east-1.amazonaws.com
37
- port : 465 # different ports are available, see SES console
37
+ port : 587 # different ports are available, see SES console
38
38
encryption : tls # TLS encryption is required
39
39
username : AWS_SES_SMTP_USERNAME # to be created in the SES console
40
40
password : AWS_SES_SMTP_PASSWORD # to be created in the SES console
@@ -55,7 +55,7 @@ and complete the configuration with the provided ``username`` and ``password``:
55
55
<swiftmailer : config
56
56
transport =" smtp"
57
57
host =" email-smtp.us-east-1.amazonaws.com"
58
- port =" 465 "
58
+ port =" 587 "
59
59
encryption =" tls"
60
60
username =" AWS_SES_SMTP_USERNAME"
61
61
password =" AWS_SES_SMTP_PASSWORD"
@@ -68,7 +68,7 @@ and complete the configuration with the provided ``username`` and ``password``:
68
68
$container->loadFromExtension('swiftmailer', array(
69
69
'transport' => 'smtp',
70
70
'host' => 'email-smtp.us-east-1.amazonaws.com',
71
- 'port' => 465 ,
71
+ 'port' => 587 ,
72
72
'encryption' => 'tls',
73
73
'username' => 'AWS_SES_SMTP_USERNAME',
74
74
'password' => 'AWS_SES_SMTP_PASSWORD',
@@ -94,7 +94,7 @@ And that's it, you're ready to start sending emails through the cloud!
94
94
# ...
95
95
mailer_transport : smtp
96
96
mailer_host : email-smtp.us-east-1.amazonaws.com
97
- mailer_port : 465 # different ports are available, see SES console
97
+ mailer_port : 587 # different ports are available, see SES console
98
98
mailer_encryption : tls # TLS encryption is required
99
99
mailer_user : AWS_SES_SMTP_USERNAME # to be created in the SES console
100
100
mailer_password : AWS_SES_SMTP_PASSWORD # to be created in the SES console
0 commit comments