Created
January 9, 2013 16:01
-
-
Save adatta02/4494285 to your computer and use it in GitHub Desktop.
snippet of a SwiftMailer factories.yml file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all: | |
user: | |
class: myUser | |
param: | |
timeout: 3600 | |
mailer: | |
class: sfMailer | |
param: | |
logging: %SF_LOGGING_ENABLED% | |
charset: %SF_CHARSET% | |
delivery_strategy: realtime | |
transport: | |
class: Swift_SmtpTransport | |
param: | |
host: email-smtp.us-east-1.amazonaws.com | |
port: 465 | |
encryption: ssl | |
username: __USERNAME__ | |
password: __PASSWORD__ | |
timeout: 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment