-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
87 lines (72 loc) · 3.35 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import argparse
import smtplib
import imaplib
import ssl
import sys
import time
from os import getenv
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from dotenv_vault import load_dotenv
load_dotenv()
def get_nonnull_env(key: str) -> str:
value = getenv(key)
if (value is None):
raise ValueError(
f"The configuration value does not exist with key {key}."
)
return value
# Connexion setup: secret as the documentation about these credentials is private
smtp_server = get_nonnull_env("SMTP_HOST")
imap_server = get_nonnull_env("IMAP_HOST")
smtp_port = int(get_nonnull_env("SMTP_PORT")) # assume SSL is required
imap_port = int(get_nonnull_env("IMAP_PORT")) # assume SSL is required
# Credentials
sender_email = get_nonnull_env("SENDER_MAIL") # the true mail of the sender
sender_password = get_nonnull_env("SENDER_PASSWORD")
shared_organization = getenv("SENDER_SHARED_ORGANIZATION")
shared_email = get_nonnull_env("SENDER_SHARED_MAIL")
shared_email_sent_box_name = get_nonnull_env("SENDER_SHARED_EMAIL_SENT_BOX_NAME")
shared_email_with_org_name = f"{shared_organization} <{shared_email}>" if shared_organization is not None else shared_email
def write_mail(html_version: str, txt_version: str):
to_email = input("Prompt your recipient's mail: ")
subject = input("What is your message's subject: ")
message = MIMEMultipart("alternative")
message['From'] = shared_email_with_org_name # Adresse de la boîte partagée X
message['To'] = to_email
message['Subject'] = subject
message.attach(MIMEText(txt_version, 'plain', 'utf-8'))
message.attach(MIMEText(html_version, 'html', 'utf-8'))
email_string = message.as_string()
# Create a secure SSL context
context = ssl.create_default_context()
context2 = ssl.create_default_context()
# Connexion et envoi de l'email
try:
# envoi de l'email
with smtplib.SMTP_SSL(smtp_server, smtp_port, context=context) as server:
server.login(sender_email, sender_password)
server.sendmail(shared_email_with_org_name, to_email, email_string)
print("Successfully sent mail")
# ajout de l'email aux mails envoyés
with imaplib.IMAP4_SSL(imap_server, imap_port, ssl_context=context2) as server:
server.login(sender_email, sender_password)
server.select(f'"{shared_email_sent_box_name}"')
server.append(f'"{shared_email_sent_box_name}"', '', imaplib.Time2Internaldate(time.time()), email_string.encode("utf-8"))
print("Successfully added the mail into the sent mail box")
except Exception as e:
print(f"Error while sending the mail : {e}")
def read_file(fp):
txt = ""
with open(fp, 'r', encoding="utf-8") as f:
txt = f.read()
return txt
def main(txt_mail_path, html_mail_path):
# Here you can add code to read from input_filepath and write to output_filepath
write_mail(read_file(html_mail_path), read_file(txt_mail_path))
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="Process the txt and html email body files.")
parser.add_argument("txt_mail_filepath", type=str, help="Path to the txt mail file")
parser.add_argument("html_mail_filepath", type=str, help="Path to the html mail file")
args = parser.parse_args()
main(args.txt_mail_filepath, args.html_mail_filepath)