Opened 10 years ago
Closed 10 years ago
#23910 closed New feature (fixed)
Add reply_to parameter to EmailMessage
Reported by: | Zakatell KANDA | Owned by: | nobody |
---|---|---|---|
Component: | Core (Mail) | Version: | dev |
Severity: | Normal | Keywords: | email, headers |
Cc: | Triage Stage: | Ready for checkin | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | yes | UI/UX: | no |
Description
It would be cool if I can just pass a list to Reply-To.
Right now I have something like this:
msg = EmailMultiAlternatives( email_subject, body, email_from, [user.email], headers={'Reply-To': ",".join([email.email for email in organization.get_emails()])})
Change History (4)
comment:1 by , 10 years ago
Summary: | Multiple Email for Reply-To → Add reply_to parameter to EmailMessage |
---|---|
Triage Stage: | Unreviewed → Accepted |
comment:3 by , 10 years ago
Has patch: | set |
---|---|
Triage Stage: | Accepted → Ready for checkin |
PR #3624 LGTM.
comment:4 by , 10 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
I guess we could add
reply_to
as a parameter toEmailMessage
andEmailMultiAlternatives
like we have for the other email fields.