Skip to content

Instantly share code, notes, and snippets.

@vagmi
Created June 28, 2011 10:18
Show Gist options
  • Select an option

  • Save vagmi/1050853 to your computer and use it in GitHub Desktop.

Select an option

Save vagmi/1050853 to your computer and use it in GitHub Desktop.
email configuration options
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
  :address              => "smtp.gmail.com",
  :port                 => 587,
  :domain               => 'gmail.com',
  :user_name            => 'collabnetrp',
  :authentication       => 'plain',
  :enable_starttls_auto => true  }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment