emails: pass reply_to as list (#57364)

This commit is contained in:
Frédéric Péters 2021-09-28 20:45:21 +02:00
parent 5672354372
commit 89a82fe043
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ def email(
'to': to_emails,
'bcc': bcc_emails,
'from_email': email_from,
'reply_to': reply_to,
'reply_to': [reply_to],
'attachments': attachments_parts,
'headers': {
'X-Qommon-Id': os.path.basename(get_publisher().app_dir),