ビュー.py
if 'send_email' in request.POST:
subject, from_email, to = 'Parent Incident Notification',user.email, person.parent_email
html_content = render_to_string('incident/print.html',{'person':person,
'report':report,
})
text_content = strip_tags(html_content)
msg = EmailMultiAlternatives(subject, text_content, settings.DEFAULT_FROM_EMAIL, [to])
msg.attach_alternative(html_content, "text/html")
msg.send()
上記はメールを送信するビューです。そうすることで、HTML コンテンツをメールと一緒に送信できます。メールは [to] アドレスだけに送信されます。別の bcc と cc も作成したい.in docs を調べましEmailmessage objects
たビューを変更するために bcc と cc を含める方法がわかりません。
助けが必要。
ありがとう