Python Forum
email Library: properly send message as quoted-printable
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
email Library: properly send message as quoted-printable
#2
Have you tried setting the content type and described here?

https://stackoverflow.com/questions/8827...ith-python

Even though the original post is 10 years old, this update is from 2019

Quote:for python3, improve @taltman 's answer:

use email.message.EmailMessage instead of email.message.Message to construct email.
use email.set_content func, assign subtype='html' argument. instead of low level func set_payload and add header manually.
use SMTP.send_message func instead of SMTP.sendmail func to send email.
use with block to auto close connection.
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)
Reply


Messages In This Thread
RE: email Library: properly send message as quoted-printable - by deanhystad - Nov-14-2022, 03:42 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  smtplib send email has no timestamp Pedroski55 2 2,003 Jun-11-2024, 04:57 AM
Last Post: Pedroski55
  Send email with smtp without using Mimetext mgallotti 0 1,351 Feb-01-2023, 04:43 AM
Last Post: mgallotti
  how to check if someone send a message in a discord channel? Zerolysimin 1 1,469 Nov-06-2022, 11:10 AM
Last Post: Larz60+
  Unable to send email attachments cosmarchy 7 4,953 Mar-09-2022, 09:29 PM
Last Post: bowlofred
  How to make scraper send email notification just once themech25 0 2,029 Nov-08-2021, 01:51 PM
Last Post: themech25
  is this Unicode printable? Skaperen 2 2,287 Sep-23-2021, 01:25 AM
Last Post: Skaperen
  send email smtp rwahdan 0 2,433 Jun-19-2021, 01:28 AM
Last Post: rwahdan
  Bluetooth send message after connecting? korenron 2 3,664 Apr-26-2021, 05:50 AM
Last Post: korenron
  Need Outlook send email code using python srikanthpython 3 11,698 Feb-28-2021, 01:53 PM
Last Post: asyswow64
  How to send email using python? Gigux 2 3,896 Jul-04-2020, 07:53 AM
Last Post: Gigux

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020