#32583: Allow mass emails with EmailMessage Object
-----------------------------------------+--------------------------
Reporter: Muskan Vaswan | Owner: nobody
Type: New feature | Status: assigned
Component: Core (Mail) | Version: 3.1
Severity: Normal | Keywords:
Triage Stage: Unreviewed | Has patch: 0
Needs documentation: 0 | Needs tests: 0
Patch needs improvement: 0 | Easy pickings: 0
UI/UX: 0 |
-----------------------------------------+--------------------------
Allowing sending in a list of email messages as arguments for
`send_mass_mail()` function. This will allow the user to send multiple
emails using the email message object, in a single connection usinf a
simplistic syntax.
----
Example Usage:
{{{
messages = [
EmailMessage(subject, message, sender, recipient, bcc, cc,
reply_to=email)
for subject, message, sender, recipient, bcc, cc, email in datatuple
]
send_mass_mail(messages=messages)
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/32583>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/django-updates/055.decea5c021074cbf9118089f62b62c2c%40djangoproject.com.