# Red Mail: Advanced Email Sender > Next generation email sender --- [](https://pypi.org/project/redmail/) [](https://github.com/Miksus/red-mail/actions/workflows/main.yml) [](https://codecov.io/gh/Miksus/red-mail) [](https://red-mail.readthedocs.io/en/latest/) [](https://pypi.org/project/redmail/) ## What is it? Red Mail is an advanced email sender library. It is a sister library for [Red Box, advanced email reader](https://github.com/Miksus/red-box). It makes sending emails trivial and has a lot of advanced features such as: - [Attachments](https://red-mail.readthedocs.io/en/stable/tutorials/attachments.html) - [Templating (with Jinja)](https://red-mail.readthedocs.io/en/stable/tutorials/jinja_support.html) - [Embedded images](https://red-mail.readthedocs.io/en/stable/tutorials/body_content.html#embedded-images) - [Prettified tables](https://red-mail.readthedocs.io/en/stable/tutorials/body_content.html#embedded-tables) - [Send as cc or bcc](https://red-mail.readthedocs.io/en/stable/tutorials/sending.html#sending-email-with-cc-and-bcc) - [Gmail preconfigured](https://red-mail.readthedocs.io/en/stable/tutorials/config.html#gmail) See more from the [documentations](https://red-mail.readthedocs.io) or see [release from PyPI](https://pypi.org/project/redmail/). Install it from PyPI: ```shell pip install redmail ``` ## Why Red Mail? Sending emails **SHOULD NOT** be this complicated: ```python 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("