send_mail.py 2.07 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
import smtplib
import sys
from email.message import EmailMessage
import ci_secrets
import os


def run(tp_file,od_file,coop):
    msg = EmailMessage()
    msg['Subject'] = "Coopdev : évolutions à tester"
    msg['From'] = "brevo@ksuite-coopdev.fr"
    msg['To'] = ci_secrets.coops_mails[coop]
    msg['CC'] = "assistance-redmine@coopdev.fr"
    msg['Reply-to'] = "assistance-redmine@coopdev.fr"

    tp_file_exists = os.path.exists(tp_file)
    od_file_exists = os.path.exists(od_file)

    if not tp_file_exists and not od_file_exists:
        print("MAIL : rien à envoyer")
        return
22 23 24 25 26 27 28
    elif not tp_file_exists:
        tp_file = "/home/django/third-party/scripts/data/ci_diff_third-party_last.txt"
        tp_file_exists = os.path.exists(tp_file)
    elif not od_file_exists:
        od_file = "/home/django/third-party/scripts/data/ci_diff_Odoo_last.txt"
        od_file_exists = os.path.exists(od_file)

Yvon committed
29
    body = "Bonjour " + ci_secrets.coops_usernames[coop] +",\n\n"
30
    body = body + "De nouveaux développements en attente de mise en production ont été mis en ligne sur " + ci_secrets.coops_preprod_urls[coop] + ".\n"
Yvon committed
31
    body = body + "On te remercie de bien vouloir tester ces évolutions et de nous faire un retour via les liens redmine ci-dessous (si possible), ou en répondant à assistance-redmine@coopdev.fr." + "\n\n\n"
32 33 34 35 36 37 38 39
    if tp_file_exists:
        tp_f = open(tp_file,"r")
        body = body + "Evolutions des applications tierces :\n\n" + tp_f.read() + "\n\n"
        tp_f.close()
    if od_file_exists:
        od_f = open(od_file,"r")
        body = body + "Evolutions d'odoo :\n\n" + od_f.read() + "\n\n"
        tp_f.close()
40
    body = body + "Coopérativement.\nCoopdev Foodcoops"
41 42 43 44 45 46 47 48 49 50 51 52 53 54
    msg.set_content(body)
    s = smtplib.SMTP('smtp-relay.sendinblue.com', port=587)
    s.login("brevo@ksuite-coopdev.fr", ci_secrets.mail_server_password)
    s.send_message(msg)
    s.quit()
    print("MAIL : envoi effectué")

if __name__ == '__main__':
    arg = ""
    if len(sys.argv) > 3:
        arg1 = sys.argv[1]
        arg2 = sys.argv[2]
        arg3 = sys.argv[3]
    run(arg1,arg2,arg3)