我正在使用django发票服务将邮件发送给在我的应用上进行交易的客户。我的代码包含这一行。
from django.core.mail.message import EmailMultiAlternatives
from django.template.loader import render_to_string
from email.MIMEImage import MIMEImage
def send_mail(html_content):
email = EmailMultiAlternatives("Invoice Details",text_content,to=[xxxx,xxxx])
email.attach_alternative(html_content, 'text/html')
email.send()
但每当我向客户发送邮件时,他们会收到5到6封相同内容的重复邮件。如何在django invoice ???中停止这些重复的邮件?