Skip to content

Commit

Permalink
armailer
Browse files Browse the repository at this point in the history
  • Loading branch information
micahbrich committed Dec 22, 2009
1 parent c9e5b1a commit fef01f5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion app/models/comment_mailer.rb
@@ -1,4 +1,4 @@
class CommentMailer < ActionMailer::ARMailer class CommentMailer < ActionMailer::Base


def micah_notifier(comment) def micah_notifier(comment)
recipients "micah@micahrich.com" recipients "micah@micahrich.com"
Expand Down
20 changes: 10 additions & 10 deletions config/environments/development.rb
Expand Up @@ -18,15 +18,15 @@


#delivery method #delivery method
# config.action_mailer.delivery_method = :smtp # config.action_mailer.delivery_method = :smtp
ActionMailer::Base.delivery_method = :activerecord # ActionMailer::Base.delivery_method = :activerecord


# smtp settings # smtp settings
config.action_mailer.smtp_settings = { # config.action_mailer.smtp_settings = {
# :address => 'smtp.micahrich.com', # # :address => 'smtp.micahrich.com',
:address => 'localhost', # :address => 'localhost',
:port => 25, # :port => 25,
:authentication => :login, # :authentication => :login,
:domain => 'micahrich.com', # :domain => 'micahrich.com',
:user_name => 'info+micahrich.com', # :user_name => 'info+micahrich.com',
:password => 'russell' # :password => 'russell'
} # }

0 comments on commit fef01f5

Please sign in to comment.