9 lines
239 B
Ruby
9 lines
239 B
Ruby
module Mails
|
||
class ReceivedMail < ActiveRecord::Base
|
||
include MailTemplateConcern
|
||
|
||
DISPLAYED_NAME = 'Accusé de passage en instruction'
|
||
DEFAULT_OBJECT = 'Votre dossier TPS nº --numero_dossier-- va être instruit'
|
||
|
||
end
|
||
end
|