Arpit1234 commited on
Commit
3bb8681
·
verified ·
1 Parent(s): 7b4d4e4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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='ENTER_SENDERS_MAILID'
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()