Skip to content

Instantly share code, notes, and snippets.

@2get
Created December 9, 2013 16:17
Show Gist options
  • Save 2get/7874981 to your computer and use it in GitHub Desktop.
Save 2get/7874981 to your computer and use it in GitHub Desktop.
Rails Action Mailer Configuration for MuuMuuMail (https://muumuu-mail.com/)
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