Sha256: 476d1f81e69032e8393acd187d6c781825e2ab6c9765fad42e14d658e51c8826
Contents?: true
Size: 395 Bytes
Versions: 38
Compression:
Stored size: 395 Bytes
Contents
# frozen_string_literal: true module Spotlight ## # Confirm new devise users class ConfirmationMailer < ActionMailer::Base include Devise::Mailers::Helpers def confirmation_instructions(record, token, opts, exhibit: nil) @token = token @exhibit = exhibit initialize_from_record(record) mail headers_for(:confirmation_instructions, opts) end end end
Version data entries
38 entries across 38 versions & 1 rubygems