allow mailers/_bizdev_signature to be configured in .env file
Refs: #5871
This commit is contained in:
parent
af5ce7cfcf
commit
3034716963
3 changed files with 5 additions and 3 deletions
|
@ -9,6 +9,4 @@ Cordialement,
|
|||
Téléphone (standard) :
|
||||
= CONTACT_PHONE
|
||||
%br
|
||||
Incubateur de Services Numériques / beta.gouv.fr
|
||||
%br
|
||||
Services du Premier Ministre, 20 avenue de Ségur, 75007 Paris
|
||||
= safe_join(CONTACT_ADDRESS.split("\n"), raw('<br>'))
|
||||
|
|
|
@ -21,6 +21,9 @@ APPLICATION_BASE_URL="https://www.demarches-simplifiees.fr"
|
|||
# OLD_CONTACT_EMAIL=""
|
||||
# CONTACT_PHONE=""
|
||||
|
||||
# Personnalisation d'instance - Adresses postale de l'opérateur de l'instance
|
||||
# CONTACT_ADDRESS="Incubateur de Services Numériques / beta.gouv.fr\nServices du Premier Ministre, 20 avenue de Ségur, 75007 Paris"
|
||||
|
||||
# Personnalisation d'instance - URL pour la création de compte administrateur sur l'instance
|
||||
# DEMANDE_INSCRIPTION_ADMIN_PAGE_URL=""
|
||||
|
||||
|
|
|
@ -8,5 +8,6 @@ if !defined?(CONTACT_EMAIL)
|
|||
CONTACT_PHONE = ENV.fetch("CONTACT_PHONE", "01 76 42 02 87")
|
||||
|
||||
OLD_CONTACT_EMAIL = ENV.fetch("OLD_CONTACT_EMAIL", "contact@tps.apientreprise.fr")
|
||||
CONTACT_ADDRESS = ENV.fetch("CONTACT_ADDRESS", "Incubateur de Services Numériques / beta.gouv.fr\nServices du Premier Ministre, 20 avenue de Ségur, 75007 Paris")
|
||||
end
|
||||
# rubocop:enable DS/ApplicationName
|
||||
|
|
Loading…
Reference in a new issue