Skip to main content

A Python package for sending emails using AWS SES

Project description

Sessender

Sessender is a Python package for sending emails using Amazon SES. It provides a simple interface for sending plain text and HTML emails, as well as attachments.

Installation

You can install Sessender using pip:

pip install sessender

Usage


To use Sessender, you need to provide your Amazon SES credentials as environment variables:

  • SES_USERNAME: Your Amazon SES SMTP username.
  • SES_PASS: Your Amazon SES SMTP password.
  • SES_HOST: Your Amazon SES SMTP host.
  • SES_PORT: Your Amazon SES SMTP port.
  • EMAIL_RECIPIENT: The recipient email address.
  • EMAIL_SENDER: The sender email address.

Then, create a Sessender object with your credentials:

from sessender import SesSender

sender = SesSender()

sender.send_email(
    subject='Hello, world!',
    message='This is a test email from Sessender.',
)

You can also include attachments with your emails by passing a file path to the attachment parameter:

sender.send_email(
    subject='Hello, world!',
    message='This is a test email from Sessender with an attachment.',
    attachment='/path/to/attachment.txt'
)

Contributing

If you'd like to contribute to Sessender, please fork the repository and create a pull request. We welcome contributions of all kinds, including bug fixes, new features, and documentation improvements.

License

Sessender is licensed under the MIT License. See LICENSE for more information.

Project details


Download files

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

Source Distribution

sessender-0.4.tar.gz (3.1 kB view hashes)

Uploaded Source

Built Distribution

sessender-0.4-py3-none-any.whl (3.5 kB view hashes)

Uploaded Python 3

Supported by

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