Opened 4 years ago
Closed 4 years ago
#32583 closed New feature (wontfix)
Allow mass emails with EmailMessage Object
Description ¶
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)
Change History (2)
comment:1 by , 4 years ago
Owner: | removed |
---|---|
Status: | assigned → new |
comment:2 by , 4 years ago
Resolution: | → wontfix |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
The API for
send_mass_mail()
is frozen so we will not accept any new functionalities. Check also docs about sending multiple emails.