Skip to content

Instantly share code, notes, and snippets.

@carellen
Created July 13, 2022 07:41
Show Gist options
  • Save carellen/9291572087a107a36b218ea1517dac84 to your computer and use it in GitHub Desktop.
Save carellen/9291572087a107a36b218ea1517dac84 to your computer and use it in GitHub Desktop.
Self email settings
config.action_mailer.asset_host = 'http://localhost:3000'
config.action_mailer.raise_delivery_errors = true
config.action_mailer.perform_caching = false
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
enable_starttls_auto: true,
address: 'smtp.gmail.com',
port: 587,
authentication: 'plain',
user_name: '[email protected]',
password: 'password'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment