Ok ragazzi, ho guardato su Internet da anni e semplicemente non ho potuto trovare una risposta a questo. Ho provato molti suggerimenti ma non riesco a farlo funzionare. Sto tentando di inviare un'email usando python (smtplib e moduli email) e il servizio Gmail. Qui sono i miei pacchetti importati:Invio di email Python TypeError: stringa o buffer previsto
import time, math, urllib2, urllib, os, shutil, zipfile, smtplib, sys
from email.mime.text import MIMEText
Ed ecco la mia istruzione DEF per l'invio della e-mail:
def sendmessage():
print('== You are now sending an email to Hoxie. Please write your username below. ==')
mcusername = str(raw_input('>> Username: '))
print('>> Now your message.')
message = str(raw_input('>> Message: '))
print('>> Attempting connection to email host...')
fromaddr = '[email protected]'
toaddrs = '[email protected]'
username = '[email protected]'
password = '1013513403'
server = smtplib.SMTP('smtp.gmail.com:587')
subject = 'Email from',mcusername
content = message
msg = MIMEText(content)
msg['From'] = fromaddr
msg['To'] = toaddrs
msg['Subject'] = subject
try:
server.ehlo()
server.starttls()
server.ehlo()
except:
print('!! Could not connect to email host! Check internet connection! !!')
os.system('pause')
main()
else:
print('>> Connected to email host! Attempting secure login via SMTP...')
try:
server.login(username,password)
except:
print('!! Could not secure connection! Stopping! !!')
os.system('pause')
main()
else:
print('>> Login succeeded! Attempting to send message...')
try:
server.sendmail(fromaddr, toaddrs, msg)
except TypeError as e:
print e
print('Error!:', sys.exc_info()[0])
print('!! Could not send message! Check internet connection! !!')
os.system('pause')
main()
else:
server.quit()
print('>> Message successfully sent! I will respond as soon as possible!')
os.system('pause')
main()
ho debug nel modo più ampio oso e ottenere questo:
>> Login succeeded! Attempting to send message...
TypeError: expected string or buffer
Il che significa che è riuscito a collegarsi ma si è fermato quando ha provato a inviare il messaggio. Una cosa che mi fa impazzire è che non indica dove. Anche la mia codifica potrebbe non essere così eccezionale, quindi nessun cyber bullismo.
Qualsiasi aiuto sarebbe molto apprezzato! Grazie.