Мне не удалось найти ответ на эту ошибку по существующим вопросам, так что вот так.
Я пытаюсь отправить электронное письмо на список адресов электронной почты, импортированных из файла CSV, используя Python, gmail и библиотеку smtplib.
Это код:
import smtplib
import csv
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
MY_ADDRESS = 'myemailaddress'
PASSWORD = 'mypassword'
def get_contacts(filename):
"""
Return email addresses read from a file specified by filename.
"""
emails = []
with open(filename, newline='') as contacts_file:
emailreader = csv.reader(contacts_file, delimiter=' ', quotechar='|')
for a_contact in emailreader:
emails.append(a_contact)
return emails
def main():
emails = get_contacts('mycontacts.csv') # read contacts
message_template = """Test message goes here"""
# set up the SMTP server
s = smtplib.SMTP(host='smtp.gmail.com', port=587)
s.starttls()
s.login(MY_ADDRESS, PASSWORD)
# For each contact, send the email:
for email in zip(emails):
msg = MIMEMultipart() # create a message
# add in the actual person name to the message template
message = message_template
# Prints out the message body for our sake
print(message)
# setup the parameters of the message
msg['From']=MY_ADDRESS
msg['To']=email
msg['Subject']="This is TEST"
# add in the message body
msg.attach(MIMEText(message, 'plain'))
# send the message via the server set up earlier.
s.send_message(msg)
del msg
# Terminate the SMTP session and close the connection
s.quit()
if __name__ == '__main__':
main()
Я получаю следующую ошибку:
Traceback (most recent call last):
File "py_mail.py", line 58, in <module>
main()
File "py_mail.py", line 51, in main
s.send_message(msg)
File "/home/hugo/anaconda3/lib/python3.7/smtplib.py", line 942, in send_message
to_addrs = [a[1] for a in email.utils.getaddresses(addr_fields)]
File "/home/hugo/anaconda3/lib/python3.7/email/utils.py", line 112, in getaddresses
all = COMMASPACE.join(fieldvalues)
TypeError: sequence item 0: expected str instance, tuple found
Мне кажется, что ошибка возникает при попытке прочитать письмо из списка адресов электронной почты, но я не могу понять это, если честно.
Любая помощь или ссылки на связанный ответ приветствуются.
ОБНОВЛЕНИЕ: я использовал zip, потому что это то, что сделал оригинальный скрипт (https://medium.freecodecamp.org/send-emails-using-code-4fcea9df63f). После удаления ошибка исчезла, но появилось новое: TypeError: sequence item 0: expected str instance, list found
Теперь моя единственная проблема - как изменить мой список адресов электронной почты к приемлемому вводу для smtplib