Skiper22 Napisano Sierpień 2, 2020 Zgłoś Napisano Sierpień 2, 2020 Nie dochodzą emaile do masowego wysyłania emaili z gmaila i zezwóliłem dostęp do aplikacji i włączyłem imap i pop.Oto kod: import smtplib with open("to.txt", 'r') as f: maile = [a.strip() for a in f.readlines() if a.strip()] print(maile) gmail_user = '' gmail_password = '' sent_from = gmail_user email_text = 'tekst' try: server = smtplib.SMTP('smtp.gmail.com', 587) server.ehlo() server.starttls() server.login(gmail_user, gmail_password) for x in maile: server.sendmail(sent_from, x, email_text) except: print('Hej') Cytuj
Bartosz Wójcik Napisano Sierpień 2, 2020 Zgłoś Napisano Sierpień 2, 2020 Ale obowiązują i tak domyślne limity Gmaila, no a błąd jest raczej oczywisty, brakuje Ci importu. Cytuj
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.