Update app.py
Browse files
app.py
CHANGED
@@ -4,15 +4,15 @@ from email.mime.multipart import MIMEMultipart
|
|
4 |
from email.mime.text import MIMEText
|
5 |
|
6 |
|
7 |
-
from_addr='
|
8 |
|
9 |
data=pd.read_csv("abc.csv") # Enter path of CSV files containing emails
|
10 |
to_addr=data['email'].tolist() # Change'email' to column name containg emailids
|
11 |
name = data['name'].tolist()
|
12 |
|
13 |
l=len(name)
|
14 |
-
email="" #Enter Your email id here
|
15 |
-
password="" #Enter your Password
|
16 |
|
17 |
for i in range (l):
|
18 |
msg=MIMEMultipart()
|
|
|
4 |
from email.mime.text import MIMEText
|
5 |
|
6 |
|
7 |
+
from_addr='[email protected]'
|
8 |
|
9 |
data=pd.read_csv("abc.csv") # Enter path of CSV files containing emails
|
10 |
to_addr=data['email'].tolist() # Change'email' to column name containg emailids
|
11 |
name = data['name'].tolist()
|
12 |
|
13 |
l=len(name)
|
14 |
+
email="[email protected]" #Enter Your email id here
|
15 |
+
password="8648@mail" #Enter your Password
|
16 |
|
17 |
for i in range (l):
|
18 |
msg=MIMEMultipart()
|