Check out this SlideShare Presentation: Introduction To Delayed Jobhttp://static.slidesharecdn.com/swf/ssplayer2.swf?doc=introtodelayedjob-091110110012-phpapp01&stripped_title=introduction-to-delayed-job&userName=jonathanjulianView more presentations from Jonathan Julian.
Category: Ruby on Rails
Lone Star Ruby Conference 2010
DejaVu! You usually say that when you attend the same conference twice 😉 - At Lone Star, its always an new experience. Last year I was an attendee, this year I presented a talk and I thoroughly enjoyed myself. There were an awesome selection of talks and more importantly, the sequence of talks was thought … Continue reading Lone Star Ruby Conference 2010
ActionMailer SMTP settings in rails
1. Add following line to rails environment file ActionMailer::Base.delivery_method = :smtp2. Include your email authenticationCreate a ruby file called smtp_settings under config/initializers directory# config/initializers/smtp_settings.rbActionMailer::Base.smtp_settings = { :address => "smtp.gmail.com", :port => 587, :authentication => :plain, :enable_starttls_auto => true, :user_name => "replies@gmail.com", :password => "_my_gmail_password_"}noTE** Keep starttls_auto always true3. Create sample mailer in order to ensure … Continue reading ActionMailer SMTP settings in rails
