在我的脚本中,用户填写Django表单然后两件事:数据保存在我的数据库中,电子邮件发送到支持帐户。
我正在寻找从我的Django Web应用程序中改进这个小部分。所有这些过程都运行正常,但我想在我的观点中改进这一部分:
subject = "Ticket n° " + str(post.id) + " : " + str(post.Objet.encode('utf-8'))
message = "Bonjour Datasystems, \n \n Vous avez un nouveau ticket en attente comportant les informations suivantes : \n " + "Nom : " + str(post.Nom.encode('utf-8')) + " \n Prénom : " + str(post.Prenom.encode('utf-8')) + " \n Société/Association client : " + str(request.user.last_name.encode("utf-8")) + " \n N° Téléphone : " + str(post.Telephone.encode("utf-8")) + " \n Adresse Email : " + str(post.Mail.encode("utf-8")) + " \n Description du problème : " + str(post.Description.encode("utf-8"))
image = post.Image
mail = EmailMessage(subject, message, 'support@datasystems.fr', ['support@datasystems.fr'], html_message='This is <b>HTML</b> Content')
mail.attach_file(image.path)
mail.send()
我想在每个变量之前用粗体字写这个部分。
例如在我的电子邮件中:
并制作垂直空间,我放置\n
:
例如:
Bonjour Datasystems,
Vous avez un nouveau ticket ... (currently)
---
Bonjour Datasystems,
Vous avez un nouveau ticket ... (What I would like to get)
到目前为止,我的电子邮件是这样的:
根据我的两个问题,你有解决方案吗?
答案 0 :(得分:2)
制作两个模板;我们称他们为message.txt
为文本版,为{h}为message.html
。渲染它们并将结果传递给EmailMessage()
:
from django.template.loader import get_template
context = {
'Nom' : str(post.Nom.encode('utf-8')),
'Prenom' : str(post.Prenom.encode('utf-8')),
'Telephone' : str(post.Telephone.encode('utf-8')),
'Email' : str(post.Mail.encode('utf-8')),
'Objet' : str(post.Objet.encode('utf-8')),
'Description' : str(post.Description.encode('utf-8')),
'Client' : str(request.user.last_name.encode("utf-8")),
}
message = get_template('message.txt').render(context)
html_message = get_template('message.html').render(context)
subject = "Ticket n° " + str(post.id) + " : " + str(post.Objet.encode('utf-8'))
image = post.Image
mail = EmailMultiAlternatives(subject, message, 'support@datasystems.fr', ['support@datasystems.fr'])
mail.attach_alternative(html_message, "text/html")
mail.attach_file(image.path)
mail.send()
示例message.txt
:
Bonjour Datasystems,
Vous avez un nouveau ticket en attente comportant les informations suivantes :
Nom : {{ nom }}
foo : {{ bar }}
示例message.html
:
<html>
<body>
<h1>Bonjour Datasystems,</h1>
<p>Vous avez un nouveau ticket en attente comportant les informations suivantes :</p><br><br>
<p>
<strong>Nom</strong> : {{ nom }}<br>
<strong>foo</strong> : {{ bar }}
</p>
</body>
</html>