WIP: validation don

This commit is contained in:
Adrien Bourmault 2022-10-08 22:48:33 +02:00
parent 1bca0ed3b2
commit 42412c4b3c
No known key found for this signature in database
GPG Key ID: 6EB408FE0ACEC664
1 changed files with 7 additions and 4 deletions

View File

@ -160,10 +160,13 @@ def validate(record):
os.system("cd {} && pdflatex {}".format(WORKDIR+"/validé/", filename+".tex"))
# Preparing mail
mailheaders = get_file_content_all(RECEPT_MAIL_HEADERS).replace("COURRIEL-DON",
email) + "\n"
mailtext = get_file_content_all(RECEPT_MAIL) + "\n"
mailtattach = get_file_content_all(RECEPT_MAIL_ATTACHMENT) + "\n"
mailheaders = get_file_content_all(RECEPT_MAIL_HEADERS).replace(
"COURRIEL-DON",
email) + "\n"
mailtext = get_file_content_all(RECEPT_MAIL).replace("DATE-DON", date) + "\n"
mailtattach = get_file_content_all(RECEPT_MAIL_ATTACHMENT).replace(
"DATE-DON",
date.replace("/", ".")) + "\n"
# Opening PDF file as binary
attachment = open(WORKDIR+"/validé/"+filename+".pdf", "rb")