Created
December 9, 2013 16:17
-
-
Save 2get/7874981 to your computer and use it in GitHub Desktop.
Rails Action Mailer Configuration for MuuMuuMail (https://muumuu-mail.com/)
This file contains hidden or 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
config.action_mailer.delivery_method = :smtp | |
config.action_mailer.smtp_settings = { | |
address: 'smtp.muumuu-mail.com', | |
port: 465, | |
domain: '<Your Domain>', | |
user_name: '<Mail Account>', | |
password: '<Password>', | |
authentication: :plain, | |
ssl: true, | |
tls: true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment