用于发送邮件的django函数(见下文(工作得非常好!
from django.core.mail import send_mail
send_mail(
'Subject here',
'Here is the message.',
'from@example.com',
['to@example.com'],
fail_silently=False,
)
不幸的是,没有关于在消息文本中创建新行的信息!有人知道解决方案或有同样的问题吗?包含这些内容的最佳方式是什么?
您可以将n
用于新行。