24 lines
743 B
Ruby
24 lines
743 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 = 'Accusé de réception'
|
||
DEFAULT_SUBJECT = 'Votre dossier nº --numéro du dossier-- a bien été déposé (--libellé démarche--)'
|
||
DOSSIER_STATE = Dossier.states.fetch(:en_construction)
|
||
end
|
||
end
|