Skip to content

Commit

Permalink
Listify reply_to.
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-thomas committed Oct 30, 2015
1 parent 0b3bc80 commit 6051eac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion incuna_mail.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def send(template_name, sender=None, to=None, cc=None, bcc=None, subject='mail',
Extra email headers can be passed in to `headers` as a dictionary.
"""
to, cc, bcc = map(listify, [to, cc, bcc])
to, cc, bcc, reply_to = map(listify, [to, cc, bcc, reply_to])

if sender is None:
sender = getattr(settings, 'DEFAULT_FROM_EMAIL', settings.SERVER_EMAIL)
Expand Down

0 comments on commit 6051eac

Please sign in to comment.