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 (optional, can be set when callingsend_email
).EMAIL_SENDER
: The sender email address (optional, can be set when callingsend_email
).
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'
)
To send a html email, use the send_email method with the html_message parameter:
sender.send_email(
subject='Hello, world!',
html_message='<h1>This is a test email from Sessender in HTML format.</h1>',
)
You can also include attachments with your emails by passing a file path to the attachment parameter:
sender.send_email(
subject='Hello, world!',
html_message='This is a test email from Sessender with an attachment.',
attachment='/path/to/attachment.txt'
)
send_email
method parameters
This example demonstrates the usage of all the parameters available in the send_email
method.
subject
(required): A string representing the subject of the email.message
(optional): A string containing the plain text content of the email. Use eithermessage
orhtml_message
, but not both.html_message
(optional): A string containing the HTML content of the email. Use eithermessage
orhtml_message
, but not both.attachment
(optional): A file path to the attachment you want to include in the email. The attachment should be readable by the script.sender
(optional): A string representing the sender's email address. If not provided, the sender will be read from theEMAIL_SENDER
environment variable.recipients
(optional): A list of strings representing the recipient email addresses. If not provided, the recipient will be read from theEMAIL_RECIPIENT
environment variable.cc
(optional): A list of strings representing the CC (Carbon Copy) email addresses.bcc
(optional): A list of strings representing the BCC (Blind Carbon Copy) email addresses.
Example usage:
sender.send_email(
subject='Hello, world!',
message='This is a test email from Sessender.',
recipients=['recipient1@example.com', 'recipient2@example.com'],
sender='sender@example.com',
cc=['cc1@example.com', 'cc2@example.com'],
bcc=['bcc1@example.com', 'bcc2@example.com'],
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
Built Distribution
File details
Details for the file sessender-0.4.7.tar.gz
.
File metadata
- Download URL: sessender-0.4.7.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7f08950324cf2cdf02938c5b5ed36c666e74c88d400e961d160c631760d8b13 |
|
MD5 | ad942412472c2e6d7e9a58b8ac5b47e1 |
|
BLAKE2b-256 | 14deec01bf3e034a82f0d822847780b7419165624b3c6b8d9961e9218ce9a38e |
File details
Details for the file sessender-0.4.7-py3-none-any.whl
.
File metadata
- Download URL: sessender-0.4.7-py3-none-any.whl
- Upload date:
- Size: 4.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b49f4d912446ce23a400c1f76a4f93823ba560017c057b8440838937ff94f601 |
|
MD5 | 89b116628257a5fcd7e38407915c3da4 |
|
BLAKE2b-256 | e3e60c0a20fd3f84fdc2bc467ebb3620d7c81b38147ab77e66d7abc4730a241f |