I can sell you accounts with daily sending quota 50k mails/dayI dont know enything about smtp can any one teach me how to send 100.000 email
Sorry about my english
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)