mirror of
https://github.com/internetee/registry.git
synced 2025-08-04 00:42:04 +02:00
Refactor domain mailers pending updates #2804
This commit is contained in:
parent
8536ac2d6f
commit
726231c4e6
6 changed files with 14 additions and 11 deletions
|
@ -1,5 +1,5 @@
|
|||
class DomainMailer < ApplicationMailer
|
||||
def registrant_pending_updated(domain)
|
||||
def pending_update_old_registrant_request(domain)
|
||||
@domain = domain
|
||||
return if delivery_off?(@domain)
|
||||
|
||||
|
@ -20,7 +20,8 @@ class DomainMailer < ApplicationMailer
|
|||
|
||||
return if whitelist_blocked?(@old_registrant.email)
|
||||
mail(to: @old_registrant.email,
|
||||
subject: "#{I18n.t(:domain_registrant_pending_updated_subject, name: @domain.name)} [#{@domain.name}]")
|
||||
subject: "#{I18n.t(:pending_update_old_registrant_request_subject,
|
||||
name: @domain.name)} [#{@domain.name}]")
|
||||
end
|
||||
|
||||
def pending_update_new_registrant_notification(domain)
|
||||
|
@ -42,7 +43,7 @@ class DomainMailer < ApplicationMailer
|
|||
|
||||
return if whitelist_blocked?(@new_registrant.email)
|
||||
mail(to: @new_registrant.email,
|
||||
subject: "#{I18n.t(:domain_pending_update_new_registrant_notification_subject,
|
||||
subject: "#{I18n.t(:pending_update_new_registrant_notification_subject,
|
||||
name: @domain.name)} [#{@domain.name}]")
|
||||
end
|
||||
|
||||
|
@ -52,7 +53,8 @@ class DomainMailer < ApplicationMailer
|
|||
|
||||
return if whitelist_blocked?(@domain.registrant_email)
|
||||
mail(to: @domain.registrant_email,
|
||||
subject: "#{I18n.t(:domain_registrant_updated, name: @domain.name)} [#{@domain.name}]")
|
||||
subject: "#{I18n.t(:domain_registrant_updated,
|
||||
name: @domain.name)} [#{@domain.name}]")
|
||||
end
|
||||
|
||||
def pending_deleted(domain)
|
||||
|
@ -76,6 +78,7 @@ class DomainMailer < ApplicationMailer
|
|||
|
||||
return if whitelist_blocked?(@old_registrant.email)
|
||||
mail(to: @old_registrant.email,
|
||||
subject: "#{I18n.t(:domain_pending_deleted_subject, name: @domain.name)} [#{@domain.name}]")
|
||||
subject: "#{I18n.t(:domain_pending_deleted_subject,
|
||||
name: @domain.name)} [#{@domain.name}]")
|
||||
end
|
||||
end
|
||||
|
|
|
@ -360,7 +360,7 @@ class Domain < ActiveRecord::Base
|
|||
asked_at = registrant_verification_asked_at
|
||||
changes_cache = changes
|
||||
|
||||
DomainMailer.registrant_pending_updated(self).deliver_now
|
||||
DomainMailer.pending_update_old_registrant_request(self).deliver_now
|
||||
DomainMailer.pending_update_new_registrant_notification(self).deliver_now
|
||||
|
||||
reload # revert back to original
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue