-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathreportMailscript.py
148 lines (133 loc) · 4.96 KB
/
reportMailscript.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
import smtplib, ssl
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
import re
def send_mail(recievermail, scores, report):
port = 465 # For SSL
receiver_email = recievermail
# read mail from file
with open("readmail.txt") as f:
sender_email = f.read()
# password read from file
with open("password.txt") as f:
password = f.read()
smtp_server = "smtp.gmail.com"
scores = scores
report = report
message = MIMEMultipart("alternative")
message["Subject"] = "Score and Report"
message["From"] = sender_email
message["To"] = receiver_email
formatreport = re.split(r'\r?\n|\r|\n|(\w+):', report)
report = " "
for line in formatreport:
if line is not None:
report = report + line + '<br>'
text = f"Hi,\n\nHere are your scores\n Score By Tone: {scores[0]} / 10.0\n Score by Question Understanding {scores[1]} / 10.0\n Score By Bot: {scores[2]} \ 10.0.\n\n{report}"
# HTML content
html = f"""
<html>
<head>
<title>Report</title>
<style>
.contain {{
width: 80%;
margin: 0 auto;
text-align: right;
text-justify: inter-word; /* optional */
}}
.container {{
width: 80%;
margin: 0 auto;
text-align: justify;
text-justify: inter-word; /* optional */
}}
.content{{
color:white;
}}
.scores {{
font-size: 1.1em;
margin-top: 1.5rem;
margin-bottom: 2rem;
justify-content: space-evenly;
flex-direction: column;
}}
.score {{
text-align: center;
}}
.report {{
text-align: left;
font-size: 1.2em;
line-height: 1.6;
margin-bottom: 2rem;
}}
.logo img {{
height: 150px;
width: auto;
padding-top: 1rem;
}}
</style>
</head>
<body style="color:white;">
<div class="content">
<div style="font-family: Helvetica,Arial,sans-serif;min-width:1000px;overflow:auto;line-height:2">
<div style="margin:50px auto;width:80%;padding:20px 0">
<div style="border-bottom:5px solid #eee">
<img src="https://lh3.googleusercontent.com/drive-viewer/AFGJ81rxuocJq92t5lIyKSE51q-xBEsMu3ah0tJxlnpw_VHkmzZ3NSo1yqWIrd0EI8W3QvSJIIRZgwWx_dEHjVuRkZ7rQYixxw=s2560" alt="logo.png" style="display:float; margin:auto;" height="150" width=auto>
</div>
<div style="color:white; text-align:center; background: -webkit-linear-gradient(0deg,#39b1b2 ,#000000 100%);">
<p style="font-size:15px">
<b>Dear Participant,</b>
</p>
<p>Congratulations! You have completed your interview through DevHire.</p>
<div class="scores">
<div class="score">
<p>Score By Tone</p>
<h2 style="background: #00466a;margin: 0 auto;width: max-content;padding: 0 10px;color: #fff;border-radius: 4px;">{scores[0]}/10.0</h2>
</div>
<div class="score">
<p>Score by Question Understanding</p>
<h2 style="background: #00466a;margin: 0 auto;width: max-content;padding: 0 10px;color: #fff;border-radius: 4px;">{scores[1]}/10.0</h2>
</div>
<div class="score">
<p>Score By Bot</p>
<h2 style="background: #00466a;margin: 0 auto;width: max-content;padding: 0 10px;color: #fff;border-radius: 4px;">{scores[2]}/10.0</h2>
</div>
</div>
<h3 class="container">Detailed Report of Your Interview:</h3>
<div class="container">{report}</div>
<p class="contain" style="font-size:15px;">
Regards,<br />Team DevHire
</p>
</div>
<hr style="border:none;border-top:5px solid #eee" />
<div style="float:left;padding:8px 0;color:#aaa;font-size:0.8em;line-height:1;font-weight:300">
<p>Contact Us</p>
<p>
<a href="mailto:[email protected]">[email protected]</a>.
</p>
</div>
</div>
</div>
</div>
</body>
</html>
"""
part1 = MIMEText(text, "plain")
part2 = MIMEText(html, "html")
# Add HTML/plain-text parts to MIMEMultipart message
# The email client will try to render the last part first
message.attach(part1)
message.attach(part2)
# Create a secure SSL context
context = ssl.create_default_context()
# Try to log in to server and send email
try:
server = smtplib.SMTP_SSL(smtp_server, port, context=context)
server.login(sender_email, password)
server.sendmail(sender_email, receiver_email, message.as_string())
print("Email sent successfully!")
except Exception as e:
print(f"Something went wrong while sending the email: {e}")
finally:
server.quit()