Python으로 HTML 이메일 작성 및 보내기
Python으로 텍스트 기반 이메일을 보내는 것은 비교적 간단합니다. 그러나 보다 매력적인 이메일 디자인을 위해 HTML 콘텐츠를 통합해야 하는 경우 이를 달성하는 방법은 다음과 같습니다.
Python 버전 2.7.14 이상에서 이메일 모듈은 대체 일반을 사용하여 HTML 이메일 메시지를 생성하는 편리한 기능을 제공합니다. 텍스트 버전입니다.
다음 코드 조각을 고려하세요.
import smtplib from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText # Define sender and recipient addresses me = "[email protected]" you = "[email protected]" # Create a MIME multipart message object msg = MIMEMultipart('alternative') msg['Subject'] = "Link" msg['From'] = me msg['To'] = you # Define the text and HTML versions of the message text = "Hi!\nHow are you?\nHere is the link you wanted:\nhttp://www.python.org" html = """<html><head></head><body><p>Hi!<br> How are you?<br> Here is the <a href="http://www.python.org">link</a> you wanted. </p></body></html>""" # Create MIME text objects for both versions part1 = MIMEText(text, 'plain') part2 = MIMEText(html, 'html') # Attach both parts to the multipart message in order of preference msg.attach(part1) msg.attach(part2) # Send the email via a local SMTP server s = smtplib.SMTP('localhost') s.sendmail(me, you, msg.as_string()) s.quit()
이 코드를 사용할 때는 '[이메일 보호됨]'은 자신의 이메일 주소로, '[이메일 보호됨]'은 수신자의 이메일 주소로 입력하세요. 또한 메시지 제목과 내용을 원하는 대로 맞춤 설정할 수 있습니다.
위 내용은 Python을 사용하여 HTML 이메일을 어떻게 보낼 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!