Email sending library
Project description
Red Mail: Advanced Email Sender
Next generation email sender
What is it?
Red Mail is an advanced email sender library. It is a sister library for Red Box, advanced email reader. It makes sending emails trivial and has a lot of advanced features such as:
- Attachments
- Templating (with Jinja)
- Embedded images
- Prettified tables
- Send as cc or bcc
- Gmail preconfigured
See more from the documentations or see release from PyPI.
Install it from PyPI:
pip install redmail
Why Red Mail?
Sending emails SHOULD NOT be this complicated:
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
msg = MIMEMultipart('alternative')
msg['Subject'] = 'An example email'
msg['From'] = 'first.last@gmail.com'
msg['To'] = 'first.last@example.com'
part1 = MIMEText("Hello!", 'plain')
part2 = MIMEText("<h1>Hello!</h1>", 'html')
msg.attach(part1)
msg.attach(part2)
# Send the message via our own SMTP server.
s = smtplib.SMTP('localhost', port=0)
s.send_message(msg)
s.quit()
With Red Mail, it is simple as this:
from redmail import EmailSender
email = EmailSender(host="localhost", port=0)
email.send(
subject="An example email",
sender="me@example.com",
receivers=['first.last@example.com'],
text="Hello!",
html="<h1>Hello!</h1>"
)
More examples:
- simple example
- email with attachments
- email with embedded images
- email with embedded plots
- email with body parameters
See practical examples from the cookbook.
Author
- Mikael Koli - Miksus - koli.mikael@gmail.com
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
redmail-0.4.2.tar.gz
(1.7 MB
view details)
Built Distribution
redmail-0.4.2-py3-none-any.whl
(42.8 kB
view details)
File details
Details for the file redmail-0.4.2.tar.gz
.
File metadata
- Download URL: redmail-0.4.2.tar.gz
- Upload date:
- Size: 1.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 821266e2d20c2a485343e8a05de5c76a96761dae58d41cc7c81b4d919c07f703 |
|
MD5 | 8b5909cac7b29de8af5d235f66eb7a50 |
|
BLAKE2b-256 | 62ea020f61b33d5d25619a9def65044dcdecda1be750abe087687274d5ff53c0 |
File details
Details for the file redmail-0.4.2-py3-none-any.whl
.
File metadata
- Download URL: redmail-0.4.2-py3-none-any.whl
- Upload date:
- Size: 42.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f35b29e1b6362bd0b9dc4983101b5a90bbf3a06c34ddbf865e1773cf024dc49f |
|
MD5 | 0e26ec5ecab979886f02907d57020c87 |
|
BLAKE2b-256 | c05cc7f203d628ac23acb34500b7d8705d50a1c71e8ef1610581869d88be9054 |