Another fix for emails

This commit is contained in:
Godwin 2015-09-27 21:27:31 -07:00
parent c16d539205
commit 06d216421e

View File

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