From 7c5e18fcde934455dbfa3aacc5d8b054d3e0030e Mon Sep 17 00:00:00 2001 From: Narindra ezway Date: Tue, 25 Mar 2025 10:38:51 +0300 Subject: [PATCH] remove "guillemet " on bodytext --- gestion/lib/Controller/PageController.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gestion/lib/Controller/PageController.php b/gestion/lib/Controller/PageController.php index 5f22398..01ce00c 100644 --- a/gestion/lib/Controller/PageController.php +++ b/gestion/lib/Controller/PageController.php @@ -1598,7 +1598,7 @@ class PageController extends Controller { $content = $this->mailer->createAttachment($data, basename($ff_pdf), "application/pdf"); $message->attach($content); $message->setSubject($subject); - $body_text = $addName ? ($body." de « ".$devis['defunt_nom']. " »" ) : $body; + $body_text = $addName ? ($body." de ".$devis['defunt_nom'] ) : $body; $signature = $this->mailerService->getFooterContent(); @@ -2355,7 +2355,7 @@ class PageController extends Controller { if($ff_pdf != null && trim($email) != ''){ //send email - $this->sendAttachmentToClientByDefunt($defunt->id, $ff_pdf, $email,"Rapport soins", "Vous trouverez en pièce jointe le « rapport de soins » de " , true); + $this->sendAttachmentToClientByDefunt($defunt->id, $ff_pdf, $email,"Rapport soins", "Vous trouverez en pièce jointe le rapport de soins de " , true); } $res = array(); @@ -2549,7 +2549,7 @@ class PageController extends Controller { if($ff_pdf != null && trim($email) != ''){ //send email - $this->sendAttachmentToClientByDefunt($defunt->id, $ff_pdf, $email,"Rapport des bijoux", "Vous trouverez en pièce jointe le rapport « des bijoux » de " , true); + $this->sendAttachmentToClientByDefunt($defunt->id, $ff_pdf, $email,"Rapport des bijoux", "Vous trouverez en pièce jointe le rapport des bijoux de " , true); } $res = array(); @@ -2765,7 +2765,7 @@ class PageController extends Controller { $careCertificateFilename = $this->certificateService->generateCareCertificate($defuntId,$this->idNextcloud); if($careCertificateFilename != null && trim($email) != '' ){ //send email - $this->sendAttachmentToClientByDefunt($defuntId, $careCertificateFilename, $email,"Attestation de soins", " Vous trouverez en pièce jointe l'attestation de « soins »", true); + $this->sendAttachmentToClientByDefunt($defuntId, $careCertificateFilename, $email,"Attestation de soins", " Vous trouverez en pièce jointe l'attestation de soins ", true); } return $careCertificateFilename; } @@ -2914,7 +2914,7 @@ class PageController extends Controller { $careCertificateFilename = $this->certificateService->generatePacemakerCertificate($defuntId,$this->idNextcloud); if($careCertificateFilename != null && trim($email) != ''){ //send email - $this->sendAttachmentToClientByDefunt($defuntId, $careCertificateFilename, $email,"Retrait de pile", "Vous trouverez en pièce jointe l'attestation de « retrait de pile »", true); + $this->sendAttachmentToClientByDefunt($defuntId, $careCertificateFilename, $email,"Retrait de pile", "Vous trouverez en pièce jointe l'attestation de retrait de pile ", true); } return $careCertificateFilename;