I'm sending email in Django:
...
recipient_list = ['first@recipient.com', 'second@recipient.com',]
mail = EmailMessage('Subject', 'content body', [sender@email.com], recipient_list)
mail.send()
In the template I'm rendering I would like to extract single recipient like this.
template.html
...
This message was sent at {{ datetime_sent }} to address {{ recipient_address }}.
I don't want to pass recipient_list
in every email in case of mass email, but rather a single recipient address. Is this possible?