能夠用send_mailpython
也能夠用EmailMessagedjango
send_mail簡單易用,是對EmailMessage的簡單封裝。但仍是EmailMessage更強大get
https://docs.djangoproject.com/en/3.0/topics/email/模板
官網對EmailMessage講解不夠多,參考使用例子的話,用programcreek查找。email
https://www.programcreek.com/python/example/50011/django.core.mail.EmailMessage數據
EmailMessage配合 django template使用, 用render_to_sring,能夠製做郵件模板,動態填寫數據,實現動態的功能強大的郵件。top