WIP: contrôle cotisation
This commit is contained in:
parent
06cca0f5a2
commit
884be4efd7
|
@ -229,7 +229,8 @@ def notify_unpaid(member):
|
|||
mailtext = mailtext.replace("NOM_COTISANT", name)
|
||||
mailtext = mailtext.replace("NUMERO_MEMBRE", str(numero))
|
||||
mailtext = mailtext.replace("MONTANT_COTISATION", amount)
|
||||
mailheaders = get_file_content_all(MODALITY_MAIL_HEADERS).replace("ANNEE_CIVILE", year)
|
||||
mailheaders = get_file_content_all(MODALITY_MAIL_HEADERS) + "\n"
|
||||
mailheaders = mailheaders.replace("ANNEE_CIVILE", year)
|
||||
mailheaders = mailheaders.replace("COURRIEL-COTISANT", email)
|
||||
|
||||
sendmail(mailheaders, mailtext)
|
||||
|
@ -251,7 +252,8 @@ def renotify_unpaid(member):
|
|||
mailtext = mailtext.replace("NOM_COTISANT", name)
|
||||
mailtext = mailtext.replace("NUMERO_MEMBRE", str(numero))
|
||||
mailtext = mailtext.replace("MONTANT_COTISATION", amount)
|
||||
mailheaders = get_file_content_all(MODALITY_MAIL_HEADERS).replace("ANNEE_CIVILE", year)
|
||||
mailheaders = get_file_content_all(MODALITY_MAIL_HEADERS) + "\n"
|
||||
mailheaders = mailheaders.replace("ANNEE_CIVILE", year)
|
||||
mailheaders = mailheaders.replace("COURRIEL-COTISANT", email)
|
||||
|
||||
sendmail(mailheaders, mailtext)
|
||||
|
|
Loading…
Reference in New Issue