我正在尝试在电子邮件中添加下载链接,以便下载存储在媒体目录中的pdf文件。 我没有克服在电子邮件内容中创建此URL链接的问题。
这是我的views.py
,具有发布功能:
def post(self, request, *args, **kwargs):
form = self.form_class()
document_choice = request.POST.getlist('DocumentChoice')
if request.method == 'POST':
form = self.form_class(request.POST)
for checkbox in document_choice:
document_edqm_id = Document.objects.get(id=checkbox).edqm_id
email = request.POST['email']
plain = email + document_edqm_id + str(datetime.now())
token = hashlib.sha1(plain.encode('utf-8')).hexdigest()
Download.objects.create(email=email, pub_id=checkbox, token=token)
document_link = Document.objects.get(id=checkbox).upload
print(document_link)
context = {'document_link': document_link}
if form.is_valid():
message = get_template('app/message.txt').render(context)
html_message = get_template('app/message.html').render(context)
subject = 'yoto'
mail = EmailMultiAlternatives(subject, message, 'app@tec.eu', [email])
mail.attach_alternative(html_message, "text/html")
mail.send(fail_silently=False)
print('Email envoyé à ' + email)
else:
print('form invalid')
return HttpResponseRedirect(self.get_success_url())
还有我的message.txt和message.html文件:
#message.txt
== This E-mail is automatically generated, please do not reply to it ==
{{ document_link }}
You can use this link as much as you like. It will expire in 0 days.
和
#message.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<p>== This E-mail is automatically generated, please do not reply to it ==</p>
<br>
<a href="http://localhost:8000/media/{{ document_link}}">Download</a>
<br>
<p>You can use this link as much as you like. It will expire in 0 days.</p>
<br>
</body>
</html>
结果:
我克服了将文件显示到新标签页中的问题,但是我想下载该标签页
问题:
到目前为止,如何添加下载文件链接而不显示新选项卡中的文件?
谢谢