Story#117612061 - do not send email if it's contact was removed

This commit is contained in:
Vladimir Krylov 2016-04-18 12:07:00 +03:00
parent 8e1ce32143
commit 8ab42450ca

View file

@ -4,6 +4,11 @@ class ContactMailer < ApplicationMailer
def email_updated(old_email, email, contact_id, should_deliver)
@contact = Contact.find_by(id: contact_id)
@old_email = old_email
unless @contact
Rails.logger.info "Cannot send email in #{self.class.name}.#{__method__} with contact_id #{contact_id}. It cannot be found"
return
end
return unless email || @contact
return if delivery_off?(@contact, should_deliver)