Skip to content

Commit c1361c9

Browse files
Issue-143
1 parent 7c25ce6 commit c1361c9

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

Automated_Mailing/mail.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from os import name
21
import pandas as pd
32
import smtplib
43
from email.mime.multipart import MIMEMultipart
@@ -12,20 +11,19 @@
1211
name = data['name'].tolist()
1312

1413
l=len(name)
14+
email="" #Enter Your email id here
15+
password="" #Enter your Password
1516

1617
for i in range (l):
1718
msg=MIMEMultipart()
1819
msg['From']=from_addr
1920
msg['To']=to_addr[i]
20-
msg['subject']='Just to Check'
21+
msg['Subject']='Just to Check'
2122

2223
body=name[i]+'Enter your content here'
2324

2425
msg.attach(MIMEText(body,'plain'))
2526

26-
email="" #Enter Your email id here
27-
password="" #Enter your Password
28-
2927
mail=smtplib.SMTP('smtp.gmail.com',587)
3028
mail.ehlo()
3129
mail.starttls()

0 commit comments

Comments
 (0)