Skip to content

Instantly share code, notes, and snippets.

@nateberkopec
Created May 31, 2012 19:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nateberkopec/2845469 to your computer and use it in GitHub Desktop.
Save nateberkopec/2845469 to your computer and use it in GitHub Desktop.
config/intializers/setup_mail.rb
ActionMailer::Base.smtp_settings = {
:address => "smtp.postmarkapp.com",
:port => 2525,
:domain => 'derpderp.com',
:user_name => 'derpderp',
:password => 'herpdederp',
:authentication => 'plain',
:enable_starttls_auto => true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment