mirror of
https://github.com/internetee/registry.git
synced 2025-08-04 17:01:44 +02:00
10 lines
283 B
Ruby
10 lines
283 B
Ruby
class RegistrarMailer < ApplicationMailer
|
|
helper ApplicationHelper
|
|
|
|
def contact_verified(email:, contact:, poi:)
|
|
@contact = contact
|
|
subject = 'Successful Contact Verification'
|
|
attachments['proof_of_identity.pdf'] = poi
|
|
mail(to: email, subject: subject)
|
|
end
|
|
end
|