forked from autolab/Autolab
-
Notifications
You must be signed in to change notification settings - Fork 0
Adding email support
daviddob edited this page Aug 3, 2017
·
1 revision
In production mode, it is recommended that you use a SMPT server of your own or integrate with a third party e-mail service provider.
To add e-mail support, simply add the following lines to your production config file (config/environments/production.rb
)
config.action_mailer.smtp_settings = {
address: 'SERVER_ADDRESS',
port: PORT_NUMBER,
domain: 'YOUR_APP_DOMAIN',
authentication: 'plain',
}
See something wrong or out of date? Did our wording trip you up? Bad documentation sucks for everyone--be sure to let us know if there's something out of place!
-- The Autolab Team