Anomalie #1349
ferméReply-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.
Mis à jour par Johan Cwiklinski il y a environ 5 ans
- Echéance mis à 20/06/2018
- Début changé de 18/11/2019 à 20/06/2018
- Suit Anomalie #1188: Envoi par messagerie ajouté
Mis à jour par Johan Cwiklinski il y a environ 5 ans
- Version utilisée changé de 0.9.3 à 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.
Mis à jour par Johan Cwiklinski il y a environ 5 ans
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) {
Mis à jour par Roland Telle il y a environ 5 ans
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.
Mis à jour par Alain Paris il y a environ 5 ans
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.
Mis à jour par Johan Cwiklinski il y a environ 5 ans
Roland, pourrais-tu me mettre en destinatinataire d'un de tes tests que je puisse voir ce qui est envoyé ?
Mis à jour par Johan Cwiklinski il y a environ 5 ans
- Catégorie mis à Emails
- Assigné à mis à Johan Cwiklinski
- Version cible mis à 0.9.3
Mis à jour par Johan Cwiklinski il y a environ 5 ans
- Statut changé de Nouveau à Résolu
- % réalisé changé de 0 à 100
Appliqué par commit 27d39455b900b04bb784073beb375272e10e569d.