Projet

Général

Profil

0001-emails-pass-reply_to-as-list-57364.patch

Frédéric Péters, 28 septembre 2021 20:45

Télécharger (800 octets)

Voir les différences:

Subject: [PATCH] emails: pass reply_to as list (#57364)

 wcs/qommon/emails.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
wcs/qommon/emails.py
307 307
        'to': to_emails,
308 308
        'bcc': bcc_emails,
309 309
        'from_email': email_from,
310
        'reply_to': reply_to,
310
        'reply_to': [reply_to],
311 311
        'attachments': attachments_parts,
312 312
        'headers': {
313 313
            'X-Qommon-Id': os.path.basename(get_publisher().app_dir),
314
-