You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.1 KiB
46 lines
1.1 KiB
class DeviseNotifyMailer < Devise::Mailer |
|
require "notifications/client" |
|
|
|
def notify_client |
|
@notify_client ||= ::Notifications::Client.new(ENV["GOVUK_NOTIFY_API_KEY"]) |
|
end |
|
|
|
def host |
|
@host ||= ENV["APP_HOST"] |
|
end |
|
|
|
def send_email(email, template_id, personalisation) |
|
notify_client.send_email( |
|
email_address: email, |
|
template_id:, |
|
personalisation:, |
|
) |
|
end |
|
|
|
def reset_password_instructions(record, token, _opts = {}) |
|
url = public_send("edit_#{record.class.name.underscore}_password_url") |
|
personalisation = { |
|
name: record.name || record.email, |
|
email: record.email, |
|
organisation: record.respond_to?(:organisation) ? record.organisation.name : "", |
|
link: "#{url}?reset_password_token=#{token}", |
|
} |
|
send_email(record.email, record.reset_password_notify_template, personalisation) |
|
end |
|
|
|
# def confirmation_instructions(record, token, _opts = {}) |
|
# super |
|
# end |
|
# |
|
# def unlock_instructions(record, token, opts = {}) |
|
# super |
|
# end |
|
# |
|
# def email_changed(record, opts = {}) |
|
# super |
|
# end |
|
# |
|
# def password_change(record, opts = {}) |
|
# super |
|
# end |
|
end
|
|
|