Browse Source

Another fix for emails

development
Godwin 9 years ago
parent
commit
c16d539205
  1. 3
      app/mailers/user_mailer.rb

3
app/mailers/user_mailer.rb

@ -69,7 +69,8 @@ class UserMailer < ActionMailer::Base
@content = content @content = content
#@banner = (@host || 'http://localhost/') + (conference ? (conference.poster.preview.url || '') : image_url('logo.png')) #@banner = (@host || 'http://localhost/') + (conference ? (conference.poster.preview.url || '') : image_url('logo.png'))
if user && user.email if user && user.email
mail to: user.email, subject: "[#{conference ? conference.title : 'Bike!Bike!'}] #{subject}" email = Rails.env == 'production' ? user.email : 'goodgodwin@hotmail.com'
mail to: email, subject: "[#{conference ? conference.title : 'Bike!Bike!'}] #{subject}"
end end
end end

Loading…
Cancel
Save