From 760902963bc09a177101bf04bc0d86581414a419 Mon Sep 17 00:00:00 2001 From: Tiavina Date: Thu, 17 Jul 2025 12:00:53 +0300 Subject: [PATCH] add caution text in attestation email templates --- gestion/lib/Controller/PageController.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gestion/lib/Controller/PageController.php b/gestion/lib/Controller/PageController.php index 161ad04..ea76101 100644 --- a/gestion/lib/Controller/PageController.php +++ b/gestion/lib/Controller/PageController.php @@ -1616,10 +1616,12 @@ class PageController extends Controller { $message->attach($content); $message->setSubject($subject); $body_text = $addName ? ($body." de ".$devis['defunt_nom'] ) : $body; + $cautionText = "MERCI DE NE PAS REPONDRE A CET EMAIL"; $signature = $this->mailerService->getFooterContent($this->getUserNameForEmailSignature()); $message->setHtmlBody( "

Bonjour.

". "

$body_text

". + "

$cautionText

". $signature );