ui / django-post_office

A Django app that allows you to send email asynchronously in Django. Supports HTML email, database backed templates and logging.
MIT License
1.01k stars 268 forks source link

Add reply_to attribute to mail.send() #431

Open sebastian-muthwill opened 1 year ago

sebastian-muthwill commented 1 year ago

Currently it is not possible to add a reply to address to mail.send(). Instead it is necessary to use EmailMultiAlternatives. However this way is not so convenient and self explanatory.

I would suggest to add the attribute reply_to to the mail.send() function.

selwin commented 1 year ago

Mind opening a PR for this?