Program to send emails $$$$

moody93

Newbie
Joined
Nov 13, 2015
Messages
2
Reaction score
0
Hello every body .

What about a program that send 500 E_MAIL at the same Time , and its saves every email you sent it >> etc
Its easy guys , you must fill excel page with e-mails , then from the program you must attach the page , and write your
message then send it
what about the price .......:p:p:p:p
the program need one weak to be ready for you

I wanna to see your replies and your opinion about it
 
Hello every body .

What about a program that send 500 E_MAIL at the same Time , and its saves every email you sent it >> etc
Its easy guys , you must fill excel page with e-mails , then from the program you must attach the page , and write your
message then send it
what about the price .......:p:p:p:p
the program need one weak to be ready for you

I wanna to see your replies and your opinion about it
import smtplib






GMAIL_USERNAME = "[email protected]"
GMAIL_PASSWORD = "random"
recipient = "[email protected]"


session = smtplib.SMTP('smtp.gmail.com', 587)
session.ehlo()
session.starttls()
session.login(GMAIL_USERNAME, GMAIL_PASSWORD)


headers = "\r\n".join(["from: " + GMAIL_USERNAME,
"subject: " + "enter your subject",
"to: " + recipient,
"mime-version: 1.0",
"content-type: text/html"])


content = headers + "\r\n\r\n"
a = 0
while a < 500:
a = a + 1
session.sendmail(GMAIL_USERNAME, recipient, content)
 
What do you mean OP? If you are going to launch the program then lets see a review copy for honest feedback :P
 
Back
Top