python ssh server에서 이메일 보내기
이메일을 보내기 위해서는 먼저 stmp 설정 및 보안 설정을 변경해야한다.
import smtplib
from email.mime.text import MIMEText
email_from = '발신자 이메일 주소'
email_to = '수신자 이메일 주소'
email_subject = 'Email Test.'
email_content = 'Sending an email test.'
msg = MIMEText(email_content)
msg['From'] = email_from
msg ['To'] = email_to
msg['Subject'] = email_subject
smtp = smtplib.SMTP('smtp.gmail.com', 587)
smtp.starttls()
smtp.login(email_from, 'password')
smtp.sendmail(email_from, email_to, msg.as_string())
print(msg.as_string())
smtp.quit()
Author And Source
이 문제에 관하여(python ssh server에서 이메일 보내기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@sangeun-jo/python-ssh-server에서-이메일-보내기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)