ส่งอีเมล HTML โดยใช้ Python


260

ฉันจะส่งเนื้อหา HTML ในอีเมลโดยใช้ Python ได้อย่างไร ฉันสามารถส่งข้อความง่าย ๆ


เพียงเตือนไขมันใหญ่ หากคุณส่งไม่ใช่ASCIIอีเมลโดยใช้งูหลาม <3.0 พิจารณาใช้อีเมลในDjango มันล้อมรอบสตริงUTF-8อย่างถูกต้องและยังใช้งานได้ง่ายกว่ามาก คุณได้รับคำเตือน :-)
Anders Rune Jensen

1
หากคุณต้องการส่ง HTML พร้อม Unicode ให้ดูที่นี่: stackoverflow.com/questions/36397827/…
guettli

คำตอบ:


419

จากเอกสาร Python v2.7.14 - 18.1.11 อีเมล: ตัวอย่าง :

นี่คือตัวอย่างของวิธีการสร้างข้อความ HTML ด้วยรุ่นข้อความธรรมดาทางเลือก:

#! /usr/bin/python

import smtplib

from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText

# me == my email address
# you == recipient's email address
me = "my@email.com"
you = "your@email.com"

# Create message container - the correct MIME type is multipart/alternative.
msg = MIMEMultipart('alternative')
msg['Subject'] = "Link"
msg['From'] = me
msg['To'] = you

# Create the body of the message (a plain-text and an HTML version).
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>
"""

# Record the MIME types of both parts - text/plain and text/html.
part1 = MIMEText(text, 'plain')
part2 = MIMEText(html, 'html')

# Attach parts into message container.
# According to RFC 2046, the last part of a multipart message, in this case
# the HTML message, is best and preferred.
msg.attach(part1)
msg.attach(part2)

# Send the message via local SMTP server.
s = smtplib.SMTP('localhost')
# sendmail function takes 3 arguments: sender's address, recipient's address
# and message to send - here it is sent as one string.
s.sendmail(me, you, msg.as_string())
s.quit()

1
เป็นไปได้หรือไม่ที่จะแนบส่วนที่สามและสี่ซึ่งทั้งสองอย่างเป็นสิ่งที่แนบมา (หนึ่ง ASCII หนึ่งไบนารี) เราจะทำเช่นนั้นได้อย่างไร? ขอบคุณ
Hamish Grubijan

1
สวัสดีครับผมสังเกตเห็นว่าในที่สุดคุณวัตถุ ถ้าฉันต้องการส่งข้อความหลายข้อความ ฉันควรเลิกทุกครั้งที่ฉันส่งข้อความหรือส่งทั้งหมด (ในวงสำหรับ) แล้วออกจากทันทีและสำหรับทั้งหมดหรือไม่ quits
xpanta

ตรวจสอบให้แน่ใจว่าได้แนบ html ล่าสุดเนื่องจากส่วนที่ต้องการ (แสดง) จะเป็นส่วนที่แนบมาล่าสุด # According to RFC 2046, the last part of a multipart message, in this case # the HTML message, is best and preferred. ฉันหวังว่าฉันจะอ่าน 2hrs นี้ที่ผ่านมา
dwkd

1
คำเตือน: สิ่งนี้จะล้มเหลวหากคุณมีอักขระที่ไม่ใช่ ASCII ในข้อความ
guettli

2
อืมฉันได้รับข้อผิดพลาดสำหรับ msg.as_string (): list object ไม่มีการเข้ารหัสแอตทริบิวต์
JohnAndrews

61

คุณอาจลองใช้โมดูลจดหมายของฉัน

from mailer import Mailer
from mailer import Message

message = Message(From="me@example.com",
                  To="you@example.com")
message.Subject = "An HTML Email"
message.Html = """<p>Hi!<br>
   How are you?<br>
   Here is the <a href="http://www.python.org">link</a> you wanted.</p>"""

sender = Mailer('smtp.example.com')
sender.send(message)

โมดูล Mailer นั้นยอดเยี่ยม แต่มันอ้างว่าใช้งานได้กับ Gmail แต่ไม่มีและไม่มีเอกสาร
MFB

1
@MFB - คุณลอง repo Bitbucket แล้วหรือยัง? bitbucket.org/ginstrom/mailer
Ryan Ginstrom

2
สำหรับ Gmail หนึ่งควรให้use_tls=True, usr='email'และpwd='password'เมื่อเริ่มต้นMailerและมันจะทำงาน
ToonAlfrink

ฉันขอแนะนำให้เพิ่มรหัสของคุณในบรรทัดต่อไปนี้หลังจากข้อความบรรทัดmessage.Body = """Some text to show when the client cannot show HTML emails"""
HTML

ยอดเยี่ยม แต่วิธีเพิ่มค่าตัวแปรให้กับลิงก์ i หมายถึงการสร้างลิงก์เช่น <a href=" python.org/somevalues"> ลิงก์ </ a > นี้เพื่อให้ฉันสามารถเข้าถึงค่านั้นจากเส้นทางที่มันไป ขอบคุณ
TaraGurung

49

นี่คือการใช้Gmailของคำตอบที่ยอมรับได้:

import smtplib

from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText

# me == my email address
# you == recipient's email address
me = "my@email.com"
you = "your@email.com"

# Create message container - the correct MIME type is multipart/alternative.
msg = MIMEMultipart('alternative')
msg['Subject'] = "Link"
msg['From'] = me
msg['To'] = you

# Create the body of the message (a plain-text and an HTML version).
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>
"""

# Record the MIME types of both parts - text/plain and text/html.
part1 = MIMEText(text, 'plain')
part2 = MIMEText(html, 'html')

# Attach parts into message container.
# According to RFC 2046, the last part of a multipart message, in this case
# the HTML message, is best and preferred.
msg.attach(part1)
msg.attach(part2)
# Send the message via local SMTP server.
mail = smtplib.SMTP('smtp.gmail.com', 587)

mail.ehlo()

mail.starttls()

mail.login('userName', 'password')
mail.sendmail(me, you, msg.as_string())
mail.quit()

2
รหัสที่ยอดเยี่ยมมันใช้งานได้สำหรับฉันถ้าฉันเปิดการรักษาความปลอดภัยระดับต่ำใน google
Tovask

15
ฉันใช้รหัสผ่านเฉพาะแอปพลิเคชัน google กับ python smtplib ทำเคล็ดลับโดยไม่ต้องมีความปลอดภัยต่ำ
yoyo

2
สำหรับทุกคนที่อ่านความคิดเห็นด้านบน: คุณต้องใช้ "รหัสผ่านสำหรับแอป" เท่านั้นหากคุณได้เปิดใช้งานการยืนยันแบบสองขั้นตอนก่อนหน้านี้ในบัญชี Gmail ของคุณ
Mugen

มีวิธีต่อท้ายสิ่งที่ไดนามิกในส่วน HTML ของข้อความหรือไม่
magma

40

นี่คือวิธีง่ายๆในการส่งอีเมล HTML เพียงแค่ระบุส่วนหัวของประเภทเนื้อหาเป็น 'text / html'

import email.message
import smtplib

msg = email.message.Message()
msg['Subject'] = 'foo'
msg['From'] = 'sender@test.com'
msg['To'] = 'recipient@test.com'
msg.add_header('Content-Type','text/html')
msg.set_payload('Body of <b>message</b>')

# Send the message via local SMTP server.
s = smtplib.SMTP('localhost')
s.starttls()
s.login(email_login,
        email_passwd)
s.sendmail(msg['From'], [msg['To']], msg.as_string())
s.quit()

2
นี่เป็นคำตอบที่ง่ายดีเหมาะสำหรับสคริปต์ที่รวดเร็วและสกปรกขอบคุณ BTW หนึ่งสามารถอ้างถึงคำตอบที่ยอมรับได้สำหรับsmtplib.SMTP()ตัวอย่างง่ายๆซึ่งไม่ได้ใช้ tls ฉันใช้มันสำหรับสคริปต์ภายในที่ทำงานที่เราใช้ ssmtp และ mailhub ท้องถิ่น s.quit()นอกจากนี้ตัวอย่างนี้จะหายไป
Mike S

1
"mailmerge_conf.smtp_server" ไม่ได้กำหนดไว้ ... อย่างน้อยก็เป็นสิ่งที่ Python 3.6 บอกว่า ...
ZEE

ฉันมีข้อผิดพลาดเมื่อใช้ผู้รับตามรายการ AttributeError: 'รายการ' วัตถุไม่มีแอตทริบิวต์ 'lstrip' วิธีการแก้ปัญหาใด ๆ
navotera

10

นี่คือตัวอย่างรหัส สิ่งนี้ได้รับแรงบันดาลใจจากรหัสที่พบในเว็บไซต์Python Cookbook (ไม่พบลิงก์ที่แน่นอน)

def createhtmlmail (html, text, subject, fromEmail):
    """Create a mime-message that will render HTML in popular
    MUAs, text in better ones"""
    import MimeWriter
    import mimetools
    import cStringIO

    out = cStringIO.StringIO() # output buffer for our message 
    htmlin = cStringIO.StringIO(html)
    txtin = cStringIO.StringIO(text)

    writer = MimeWriter.MimeWriter(out)
    #
    # set up some basic headers... we put subject here
    # because smtplib.sendmail expects it to be in the
    # message body
    #
    writer.addheader("From", fromEmail)
    writer.addheader("Subject", subject)
    writer.addheader("MIME-Version", "1.0")
    #
    # start the multipart section of the message
    # multipart/alternative seems to work better
    # on some MUAs than multipart/mixed
    #
    writer.startmultipartbody("alternative")
    writer.flushheaders()
    #
    # the plain text section
    #
    subpart = writer.nextpart()
    subpart.addheader("Content-Transfer-Encoding", "quoted-printable")
    pout = subpart.startbody("text/plain", [("charset", 'us-ascii')])
    mimetools.encode(txtin, pout, 'quoted-printable')
    txtin.close()
    #
    # start the html subpart of the message
    #
    subpart = writer.nextpart()
    subpart.addheader("Content-Transfer-Encoding", "quoted-printable")
    #
    # returns us a file-ish object we can write to
    #
    pout = subpart.startbody("text/html", [("charset", 'us-ascii')])
    mimetools.encode(htmlin, pout, 'quoted-printable')
    htmlin.close()
    #
    # Now that we're done, close our writer and
    # return the message body
    #
    writer.lastpart()
    msg = out.getvalue()
    out.close()
    print msg
    return msg

if __name__=="__main__":
    import smtplib
    html = 'html version'
    text = 'TEST VERSION'
    subject = "BACKUP REPORT"
    message = createhtmlmail(html, text, subject, 'From Host <sender@host.com>')
    server = smtplib.SMTP("smtp_server_address","smtp_port")
    server.login('username', 'password')
    server.sendmail('sender@host.com', 'target@otherhost.com', message)
    server.quit()


5

สำหรับ python3 ให้ปรับปรุงคำตอบของ @taltman :

  • ใช้email.message.EmailMessageแทนemail.message.Messageการสร้างอีเมล
  • ใช้email.set_contentfunc กำหนดsubtype='html'อาร์กิวเมนต์ แทน func ระดับต่ำset_payloadและเพิ่มส่วนหัวด้วยตนเอง
  • ใช้SMTP.send_messagefunc แทนSMTP.sendmailfunc เพื่อส่งอีเมล
  • ใช้withบล็อกเพื่อปิดการเชื่อมต่ออัตโนมัติ
from email.message import EmailMessage
from smtplib import SMTP

# construct email
email = EmailMessage()
email['Subject'] = 'foo'
email['From'] = 'sender@test.com'
email['To'] = 'recipient@test.com'
email.set_content('<font color="red">red color text</font>', subtype='html')

# Send the message via local SMTP server.
with smtplib.SMTP('localhost') as s:
    s.login('foo_user', 'bar_password')
    s.send_message(email)

4

จริงๆแล้วyagmailใช้วิธีที่แตกต่างกันเล็กน้อย

มันจะเป็นค่าเริ่มต้นส่ง HTML มีทางเลือกโดยอัตโนมัติสำหรับความสามารถในอีเมลผู้อ่าน มันไม่ใช่ศตวรรษที่ 17 อีกต่อไป

แน่นอนมันสามารถแทนที่ได้ แต่ที่นี่จะไป:

import yagmail
yag = yagmail.SMTP("me@example.com", "mypassword")

html_msg = """<p>Hi!<br>
              How are you?<br>
              Here is the <a href="http://www.python.org">link</a> you wanted.</p>"""

yag.send("to@example.com", "the subject", html_msg)

สำหรับคำแนะนำการติดตั้งและคุณสมบัติที่ดีอื่น ๆ อีกมากมายได้ดูที่GitHub


3

ต่อไปนี้เป็นตัวอย่างการใช้งานในการส่งข้อความธรรมดาและอีเมล HTML จาก Python โดยใช้smtplibพร้อมกับตัวเลือก CC และ BCC

https://varunver.wordpress.com/2017/01/26/python-smtplib-send-plaintext-and-html-emails/

#!/usr/bin/env python
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText

def send_mail(params, type_):
      email_subject = params['email_subject']
      email_from = "from_email@domain.com"
      email_to = params['email_to']
      email_cc = params.get('email_cc')
      email_bcc = params.get('email_bcc')
      email_body = params['email_body']

      msg = MIMEMultipart('alternative')
      msg['To'] = email_to
      msg['CC'] = email_cc
      msg['Subject'] = email_subject
      mt_html = MIMEText(email_body, type_)
      msg.attach(mt_html)

      server = smtplib.SMTP('YOUR_MAIL_SERVER.DOMAIN.COM')
      server.set_debuglevel(1)
      toaddrs = [email_to] + [email_cc] + [email_bcc]
      server.sendmail(email_from, toaddrs, msg.as_string())
      server.quit()

# Calling the mailer functions
params = {
    'email_to': 'to_email@domain.com',
    'email_cc': 'cc_email@domain.com',
    'email_bcc': 'bcc_email@domain.com',
    'email_subject': 'Test message from python library',
    'email_body': '<h1>Hello World</h1>'
}
for t in ['plain', 'html']:
    send_mail(params, t)

คิดว่าคำตอบนี้ครอบคลุมทุกอย่าง ลิงก์ที่ยอดเยี่ยม
stingMantis

1

นี่คือคำตอบของฉันสำหรับ AWS ที่ใช้ boto3

    subject = "Hello"
    html = "<b>Hello Consumer</b>"

    client = boto3.client('ses', region_name='us-east-1', aws_access_key_id="your_key",
                      aws_secret_access_key="your_secret")

client.send_email(
    Source='ACME <do-not-reply@acme.com>',
    Destination={'ToAddresses': [email]},
    Message={
        'Subject': {'Data': subject},
        'Body': {
            'Html': {'Data': html}
        }
    }

0

ทางออกที่ง่ายที่สุดสำหรับการส่งอีเมลจากบัญชีองค์กรใน Office 365:

from O365 import Message

html_template =     """ 
            <html>
            <head>
                <title></title>
            </head>
            <body>
                    {}
            </body>
            </html>
        """

final_html_data = html_template.format(df.to_html(index=False))

o365_auth = ('sender_username@company_email.com','Password')
m = Message(auth=o365_auth)
m.setRecipients('receiver_username@company_email.com')
m.setSubject('Weekly report')
m.setBodyHTML(final_html_data)
m.sendMessage()

นี่dfคือ dataframe ที่ถูกแปลงเป็น html Table ซึ่งกำลังถูกฉีดเข้าไปที่ html_template


คำถามไม่ได้พูดถึงอะไรเกี่ยวกับการใช้ Office หรือบัญชีองค์กร ผลงานดี แต่ไม่ค่อยมีประโยชน์กับผู้
ถาม
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.