Skip to main content

A emailing python library for emailing from alternative domains - DNS entries etc need to be assigned (not used for spamming).

Project description

smtpymailer

Python Unittest

Python Coverage

Introduction

smtpymailer is a versatile Python library designed to simplify the process of sending emails in python. It supports and validates DKIM, DMARC, and SPF records before sending emails to avoid being marked as spam, so it is ideal for sending emails from your own mail server but the sender is an alternative domain.

Features

  • Login to any mail server of your choice (I maintain a postfix server for outgoing mail only, so replies are still directed to the users normal inbox).
  • Send emails from different domains, provided the correct DNS settings are in place.
  • Validates DNS settings like DKIM, DMARC, and SPF before sending emails to avoid being marked as spam.
  • Full email functionality including To, CC, BCC, Reply-To, and attachments.
  • Adds attachments with the correct MIME type.
  • Optionally converts url tags to inline attachments CID attachments or Base64 encoded img sources, this is controlled by data attributes data-inline or data-base in the img tag.
  • Supports sending string HTML content, Jinja templates, or plain html files.
  • Automatically converts HTML to plain text for email clients that do not support HTML.
  • Supports environment variables and .env files for mail server settings.

Installation

Install the package using pip:

pip install smtpymailer

Usage

Initialization

Create an instance of SmtpyMailer with your sender email and name. The mail server details can be passed as keyword arguments or sourced from environment variables or a .env file.

Environment Variables

The following environment variables can be set or added to a .env file in your project root. Alternatively you can pass as **kwargs to the SmtpyMailer class but this is not advised.

  • MAIL_SERVER: The mail server hostname.
  • MAIL_PORT: The mail server port.
  • MAIL_USE_TLS: Whether to use TLS or not.
  • MAIL_USERNAME: The mail server username.
  • MAIL_PASSWORD: The mail server password.
  • MAIL_DKIM_SELECTOR: The DKIM selector of the domain you are sending from. (This is used to validate your ability to send from the domain).
from smtpymailer import SmtpMailer
mailer = SmtpMailer(sender_email="foo@bar.com", sender_name="Foo Bar")

Sending an Email

Use the send_email method to send emails:

Parameters

  • recipients: Single recipient email or a list of email addresses.
  • subject: Email subject.
  • cc_recipients: (Optional) Single or list of CC email addresses.
  • bcc_recipients: (Optional) Single or list of BCC email addresses.
  • reply_to: (Optional) Reply-to email address.
  • attachments: (Optional) Single file path or list of file paths for attachments.
  • html_content: (Optional) HTML content of the email (not required if using a template)
  • template: (Optional) Template file path (using jinja), it can be just a plain html file.
  • template_directory: (Optional) Single or list of template directories.
  • **kwargs: Additional arguments for jinja template, if needed.

Example

  • Send a simple email with a subject and html content.
from smtpymailer import SmtpMailer
mailer = SmtpMailer(sender_email="foo@bar.com", sender_name="Foo Bar")
mailer.send_email(recipients="bar@baz.com", subject="My test email", html_content="<h1>Hello World</h1>")
  • Send to multiple recipients, one CC, with an attachment, and a jinja template with kwargs.
from smtpymailer import SmtpMailer
mailer = SmtpMailer(sender_email="foo@bar.com", sender_name="Foo Bar")
template_data = {"name": "Foo Bar", "message": "Hello Foo", "url": "https://www.foo.com"}
mailer.send_email(recipients=["bar@baz.com", "baz@bar.com"], cc_recipients="foo@baz.com", subject="My test email", template="template.html", template_directory="./templates", **template_data)

Sending From Alternative Domains

You can send emails from alternative domains by setting up the correct DNS settings. Here's how to do it. Alt Domains Documentation

License

This project is licensed under the MIT License.

TODO

  • Change the way the send function's alter_img_src parameter works. It should AUTODETECT img elements with data-inline or data-base attributes instead.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

smtpymailer-0.1.10-py3-none-any.whl (20.1 kB view details)

Uploaded Python 3

File details

Details for the file smtpymailer-0.1.10-py3-none-any.whl.

File metadata

  • Download URL: smtpymailer-0.1.10-py3-none-any.whl
  • Upload date:
  • Size: 20.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.3

File hashes

Hashes for smtpymailer-0.1.10-py3-none-any.whl
Algorithm Hash digest
SHA256 2df7d5a6c7b6edbc2710a746b9f47898bbece81552e282c8a0bc7ddbf54797c5
MD5 c149cd65c6148af869edd67d8c6ee29e
BLAKE2b-256 08c2a924e97a2276eb56fc75811cedac5cb0c2e9aaae30ade1f5a630ace5a370

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page