Anomalie #1349
closedReply-To not used
100%
Description
A reply-to
do exist in Galette preferences, but this is not used anymore.
Needs investigaiton to know when it disapeared.
Updated by Johan Cwiklinski almost 5 years ago
- Due date set to 06/20/2018
- Start date changed from 11/18/2019 to 06/20/2018
- Follows Anomalie #1188: Envoi par messagerie added
Updated by Johan Cwiklinski almost 5 years ago
- Version utilisée changed from 0.9.3 to 0.9.2
See https://bugs.galette.eu/issues/1188#note-5
So, indeed, after commit ab95c9a8632a648ec1b8eca2c52ab62c49a6cc17 the pref_reply_to
preference is no longer used. Either this should be removed from preferences, or it should always be used if defined.
Updated by Johan Cwiklinski almost 5 years ago
To always use replyto:
diff --git a/galette/lib/Galette/Core/GaletteMail.php b/galette/lib/Galette/Core/GaletteMail.php
index 4438f4e4d..0472bf1a6 100644
--- a/galette/lib/Galette/Core/GaletteMail.php
+++ b/galette/lib/Galette/Core/GaletteMail.php
@@ -240,7 +240,11 @@ public function send()
);
// Add a Reply-To field in the mail headers.
// Fix bug #6654.
- $this->mail->AddReplyTo($this->getSenderAddress());
+ if ($this->preferences->pref_email_reply_to) {
+ $this->mail->AddReplyTo($this->preferences->pref_email_reply_to);
+ } else {
+ $this->mail->AddReplyTo($this->getSenderAddress());
+ }
if ($this->html) {
Updated by Roland Telle almost 5 years ago
Johan Cwiklinski a écrit :
To always use replyto:
[...]
Le patch ne fonctionne pas. L'adresse Répondre à n'apparaît toujours pas dans le header.
Updated by Alain Paris almost 5 years ago
Bonjour,
Je viens d'essayer , "modification d'une fiche adhérent" envoi a l'adhérent (sur une adresse Outlook) en faisant répondre j'ai bien la bonne adresse ,et je reçois bien a l'adresse "Courriel de réponse".Ajout d'une cotisation aussi...
Avec dernière Nightly et modification comme ci dessus de GaletteMail.php. Utilisation de SMTP.
Updated by Johan Cwiklinski almost 5 years ago
Roland, pourrais-tu me mettre en destinatinataire d'un de tes tests que je puisse voir ce qui est envoyé ?
Updated by Johan Cwiklinski almost 5 years ago
- Category set to Emails
- Assignee set to Johan Cwiklinski
- Target version set to 0.9.3
Updated by Johan Cwiklinski almost 5 years ago
- Status changed from Nouveau to Résolu
- % Done changed from 0 to 100
Appliqué par commit 27d39455b900b04bb784073beb375272e10e569d.
Updated by Johan Cwiklinski almost 5 years ago
- Status changed from Résolu to Fermé