24 lines
848 B
Ruby
24 lines
848 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: initiated_mails
|
|
#
|
|
# id :integer not null, primary key
|
|
# body :text
|
|
# subject :string
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# procedure_id :integer
|
|
#
|
|
module Mails
|
|
class InitiatedMail < ApplicationRecord
|
|
include MailTemplateConcern
|
|
|
|
belongs_to :procedure, optional: false
|
|
|
|
SLUG = "initiated_mail"
|
|
DEFAULT_TEMPLATE_NAME = "notification_mailer/default_templates/initiated_mail"
|
|
DISPLAYED_NAME = I18n.t('activerecord.models.mail.initiated_mail.proof_of_receipt')
|
|
DEFAULT_SUBJECT = I18n.t('activerecord.models.mail.initiated_mail.default_subject', dossier_number: '--numéro du dossier--', procedure_libelle: '--libellé démarche--')
|
|
DOSSIER_STATE = Dossier.states.fetch(:en_construction)
|
|
end
|
|
end
|