各位大大好
最近購買了Office365基本商務版, 想要利用python 來寄信, 但是一直出現,smtplib.SMTPAuthenticationError: (535, b'5.7.3 Authentication unsuccessful error.
測試過是可以從outlook登入郵寄, 但是找了網路文章 , 改過密碼 ,目前Python
還無法郵寄,不知道大家是否有遇過類似的問題, 在此先謝過各位大大.
import smtplib
mailserver = smtplib.SMTP('smtp.office365.com', 587)
mailserver.ehlo()
mailserver.starttls()
mailserver.login('email_add', 'email_password')
mailserver.sendmail('service@y******.com','********@gmail.com', 'python email')
mailserver.quit()