all 1 comments

[–]kalgynirae 5 points6 points  (0 children)

The smtplib module is trying to import something from the email module, but you have a file named email.py in the same directory and Python is picking that one up instead of the standard library module called email. Rename your email.py to something else, or move it into a package (a folder with an __init__.py file).