SMTP who can help me with smtp

labijuve

Newbie
Joined
Oct 17, 2014
Messages
20
Reaction score
7
I dont know enything about smtp can any one teach me how to send 100.000 email
Sorry about my english
 
like this:
Code:
from envelopes import Envelope, SMTP
for t in maillist:
    envelope = Envelope(
        from_addr=(u'[email protected]', u'From mail'),
        to_addr=(u'[email protected]', u'to mail'),
        subject=u'**',
        text_body=u'**'
    )
    # envelope.add_attachment('/Pictures/Pictures.jpg')
    mail = SMTP(host='**.**.com', port=587, login='**@**.com', password='**', tls=True)
    mail.send(envelope)
if you need some help, pm me
 
Back
Top