Renotification cotisation
This commit is contained in:
parent
31fb947459
commit
22218fabdc
|
@ -229,6 +229,7 @@ def notify_unpaid(member):
|
|||
mailtext = mailtext.replace("NOM_COTISANT", name)
|
||||
mailtext = mailtext.replace("NUMERO_MEMBRE", str(numero))
|
||||
mailtext = mailtext.replace("MONTANT_COTISATION", amount)
|
||||
mailtext = mailtext.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)
|
||||
|
@ -245,13 +246,14 @@ def renotify_unpaid(member):
|
|||
year = gestion_get_date(member)[:4]
|
||||
|
||||
BUF.append("* {} (numero {}), {}, {} €".format(member, numero, name, amount))
|
||||
BUF.append(" NOTIFICATION MEMBRE")
|
||||
BUF.append(" RENOTIFICATION MEMBRE")
|
||||
BUF.append("")
|
||||
|
||||
mailtext = get_file_content_all(MODALITY_MAIL) + "\n"
|
||||
mailtext = mailtext.replace("NOM_COTISANT", name)
|
||||
mailtext = mailtext.replace("NUMERO_MEMBRE", str(numero))
|
||||
mailtext = mailtext.replace("MONTANT_COTISATION", amount)
|
||||
mailtext = mailtext.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)
|
||||
|
|
Loading…
Reference in New Issue