Відправлення HTML-пошти за допомогою Python


260

Як я можу надсилати вміст HTML в електронному листі за допомогою Python? Я можу надіслати простий текст.


Просто велике жирове попередження. Якщо ви надсилаєте не- ASCII електронний лист за допомогою Python <3.0, подумайте про використання електронної пошти в Django . Він обертає UTF-8 рядки правильно, а також набагато простіше у використанні. Вас попередили :-)
Anders Rune Jensen

1
Якщо ви хочете відправити HTML з юнікода см тут: 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, одна двійкова)? Як би це зробити? Дякую.
Хаміш Грубіян

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. Я хотів би прочитати це 2
години

1
Попередження: це не вдасться, якщо у тексті є символи, що не мають права.
guettli

2
Хм, я отримую помилку для msg.as_string (): об'єкт list не має кодування атрибутів
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 - Ви пробували репортаж 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

чудово, але як додати значення змінних до посилання, я маю на увазі створення такого посилання <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
Товаск,

15
Я використовую специфічний пароль програми google з python smtplib, зробив трюк, не маючи низької безпеки.
yoyo

2
для всіх, хто читає вищевказані коментарі: "Пароль додатка" вам потрібен лише в тому випадку, якщо ви попередньо ввімкнули двоетапну перевірку в своєму обліковому записі Gmail.
Mugen

Чи є спосіб додати щось динамічно у частині HTML?
магма

40

Ось простий спосіб надіслати HTML-адресу електронної пошти, просто вказавши заголовок типу "Вміст" як "текст / 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 та локальний поштовий центр. Також цей приклад відсутній s.quit().
Mike S

1
"mailmerge_conf.smtp_server" не визначено ... принаймні так говорить Python 3.6 ...
ZEE

я отримав помилку при використанні одержувачів на основі списку AttributeError: об’єкт 'list' не має атрибута 'lstrip' будь-якого рішення?
navotera

10

Ось зразок коду. Це натхнене кодом, знайденим на сайті кулінарної книги Python (не вдається знайти точне посилання)

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_contentфункцію, призначити subtype='html'аргумент. замість функцій низького рівня set_payloadта додайте заголовок вручну.
  • використовувати SMTP.send_messageфункцію замість SMTP.sendmailфункції для надсилання електронної пошти.
  • використовувати 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 - це фрейм даних, перетворений у html-таблицю, який вводиться в html_template


У цьому питанні нічого не згадується про використання Office чи організаційний акаунт. Хороший внесок, але не дуже корисний для учасника
запитання
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.