05/04/22 - 15h40
parent
2cb62b2e91
commit
5fc7af37a1
40
email_mgt.py
40
email_mgt.py
|
@ -5,6 +5,9 @@ from email.mime.base import MIMEBase
|
|||
from email import encoders
|
||||
import locale
|
||||
import datetime
|
||||
import inspect
|
||||
import sys, os
|
||||
import prj_common as mycommon
|
||||
|
||||
locale.setlocale(category=locale.LC_ALL, locale='fr_FR.utf8')
|
||||
smtp_address = 'smtp.ionos.fr'
|
||||
|
@ -27,6 +30,7 @@ password = 'cYa1pk56Zx7EzKmg'
|
|||
|
||||
|
||||
def send_user_account_mail(message, account_mail):
|
||||
try:
|
||||
tomorrow = datetime.date.today() + datetime.timedelta(days=1)
|
||||
tomorrow_day = tomorrow.strftime("%A")
|
||||
|
||||
|
@ -43,8 +47,8 @@ def send_user_account_mail(message, account_mail):
|
|||
|
||||
html = '''
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<body>
|
||||
<div style="background-color:#eee;padding:0px;text-align:center;width:100%">
|
||||
<h2 style="font-family:Georgia, 'Times New Roman', Times, serif;color#454349;">
|
||||
|
@ -56,11 +60,11 @@ def send_user_account_mail(message, account_mail):
|
|||
Bonjour
|
||||
<div style="padding:20px 0px;text-align:center;font-family:Georgia, 'Times New Roman', Times, serif;color#454349;font-size:1.2rem;">
|
||||
|
||||
Votre adresse e-mail a bien été enregistrée sur le site <font color="green">MySy-Training</font>. <br>
|
||||
Pour valider votre compte, veuillez cliquer sur le lien <font color="green">ci-dessous :</font>
|
||||
<br/>
|
||||
<br/>
|
||||
<div style="background-color:#1962AB;width:20%;text-align:center;margin-left:auto; margin-right:auto;">
|
||||
Votre adresse e-mail a bien été enregistrée sur le site <font color="green">MySy-Training</font>. <br>
|
||||
Pour valider votre compte, veuillez cliquer sur le lien <font color="green">ci-dessous :</font>
|
||||
<br/>
|
||||
<br/>
|
||||
<div style="background-color:#1962AB;width:20%;text-align:center;margin-left:auto; margin-right:auto;">
|
||||
<b> <a href="https://apimysy.iexercice.com/myclass/api/valide_user_account/{objId}" target="_blank" style="color: white;">
|
||||
CLIQUEZ ICI
|
||||
|
||||
|
@ -79,11 +83,11 @@ Pour valider votre compte, veuillez cliquer sur le lien <font color="green">ci-d
|
|||
L'equipe informatique de MySy
|
||||
</p>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
||||
'''.format(code=tomorrow_day, objId=message)
|
||||
|
||||
|
@ -106,10 +110,19 @@ Pour valider votre compte, veuillez cliquer sur le lien <font color="green">ci-d
|
|||
|
||||
server.login(user, password)
|
||||
server.sendmail(sender, toaddrs, msg.as_string())
|
||||
print("mail successfully sent to "+str(toaddrs))
|
||||
mycommon.myprint("mail successfully sent to "+str(toaddrs))
|
||||
|
||||
return True
|
||||
|
||||
except Exception as e:
|
||||
exc_type, exc_obj, exc_tb = sys.exc_info()
|
||||
mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno))
|
||||
return False, " Impossible d'envoyer l'email de notification "
|
||||
|
||||
|
||||
def send_partner_account_mail(message, account_mail):
|
||||
|
||||
try:
|
||||
tomorrow = datetime.date.today() + datetime.timedelta(days=1)
|
||||
tomorrow_day = tomorrow.strftime("%A")
|
||||
|
||||
|
@ -173,4 +186,11 @@ def send_partner_account_mail(message, account_mail):
|
|||
server.sendmail(sender, toaddrs, msg.as_string())
|
||||
print("mail successfully sent")
|
||||
|
||||
return True
|
||||
except Exception as e:
|
||||
exc_type, exc_obj, exc_tb = sys.exc_info()
|
||||
mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno))
|
||||
return False, " Impossible d'envoyer l'email de notification"
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -68,7 +68,8 @@ def get_recherche_gle_class(sentence):
|
|||
return insertObject
|
||||
|
||||
except Exception as e:
|
||||
mycommon.myprint(e)
|
||||
exc_type, exc_obj, exc_tb = sys.exc_info()
|
||||
mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno))
|
||||
return False
|
||||
|
||||
|
||||
|
@ -94,7 +95,8 @@ def get_class_by_list_attr(attribut, list_values):
|
|||
return insertObject
|
||||
|
||||
except Exception as e:
|
||||
mycommon.myprint(e)
|
||||
exc_type, exc_obj, exc_tb = sys.exc_info()
|
||||
mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno))
|
||||
return False
|
||||
|
||||
|
||||
|
@ -119,7 +121,8 @@ def update_class_by_attribut(objId, attribut, value):
|
|||
|
||||
|
||||
except Exception as e:
|
||||
mycommon.myprint(e)
|
||||
exc_type, exc_obj, exc_tb = sys.exc_info()
|
||||
mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno))
|
||||
return False
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue