Traceback (most recent call last):
File "C:/Users/joshk/Desktop/LearningQt/LearnQt.py", line 14, in <module>
server.login('joshuackeely@hotmail.com', password)
File "C:\Users\joshk\AppData\Local\Programs\Python\Python38-32\lib\smtplib.py", line 700, in login
raise SMTPNotSupportedError(
smtplib.SMTPNotSupportedError: SMTP AUTH extension not supported by server.
Says "SMTP AUTH extension not supported by server." Not sure if that means that @hotmail is supported or not, but I looked it up and I put:
server = smtplib.SMTP('smtp-mail.outlook.com', 25)
and it said it was supported online, I thought.
Any input is appreciated.