https://github.com/marktennyson/chalice-mail
One of the most basic functions in a web application is the ability to send emails to your users fully serverlessly.
https://github.com/marktennyson/chalice-mail
aws aws-chalice aws-lambda chalice-mail mail serverless ses
Last synced: 3 months ago
JSON representation
One of the most basic functions in a web application is the ability to send emails to your users fully serverlessly.
- Host: GitHub
- URL: https://github.com/marktennyson/chalice-mail
- Owner: marktennyson
- Created: 2021-04-13T18:20:57.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-08-09T10:15:04.000Z (almost 4 years ago)
- Last Synced: 2025-02-28T10:33:57.704Z (4 months ago)
- Topics: aws, aws-chalice, aws-lambda, chalice-mail, mail, serverless, ses
- Language: Python
- Homepage: https://pypi.org/project/chalice-mail/
- Size: 1.14 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
One of the most basic functions in a web application is the ability to send emails to your users fully serverlessly.
# Downloads
[](https://pepy.tech/project/chalice-mail) [](https://pepy.tech/project/chalice-mail/month) [](https://pepy.tech/project/chalice-mail/week)# Maintainers wanted
# Chalice-Mail
The `Chalice-Mail` extension provides a simple interface to set up SMTP and AWS SES(Simple Email Service) with your Chalice application and to send messages from your views and scripts.
source code available at: Github Repo## Usage
##### Using SMTP => TLS Encryption
```python
from chalice import Chalice
from chalice_mail import Mail, Messageapp = Chalice(app_name='chalice-mail-test1')
mail = Mail(app)
mail.is_smtp = True
mail.smtp_using_tls = True
mail.username = "[email protected]"
mail.password = "world's_top_secret_password"
mail.smtp_server = 'smtp.example.com'
mail.smtp_port = 587
mail.login()@app.route('/send-smtp-mail')
def send_smtp_mail():
msg = Message(mail)
msg.subject = "this is the subject"
msg.add_recipient("[email protected]")
msg.plain = "This is the email body."
mail.send_email(msg)
return {'message':'email sended successfully'}```
##### Using SMTP => SSL Encryption
```python
from chalice import Chalice
from chalice_mail import Mail, Messageapp = Chalice(app_name='chalice-mail-test1')
mail = Mail(app)
mail.is_smtp = True
mail.smtp_using_ssl = True
mail.username = "[email protected]"
mail.password = "world's_top_secret_password"
mail.smtp_server = 'smtp.example.com'
mail.smtp_port = 465
mail.login()@app.route('/send-smtp-mail')
def send_smtp_mail():
msg = Message(mail)
msg.subject = "this is the subject"
msg.add_recipient("[email protected]")
msg.plain = "This is the email body."
mail.send_email(msg)
return {'message':'email sended successfully'}```
##### Using SES(Simple Email Service)
```python
from chalice import Chalice
from chalice_mail import Mail, Messageapp = Chalice(app_name='chalice-mail-test1')
mail = Mail(app)
mail.username = "[email protected]"
mail.aws_region = "ap-south-1"
"""
please provide the value of 'mail.aws_secret_id'
and 'mail.aws_secret_key' if you want to set the AWS
Iam user manually.
"""
mail.login()@app.route('/send-smtp-mail')
def send_smtp_mail():
msg = Message(mail)
msg.subject = "this is the subject"
msg.add_recipient("[email protected]")
msg.plain = "This is the email body."
mail.send_email(msg)
return {'message':'email sended successfully'}```
##### Using SMTP => Email with HTML
```python
from chalice import Chalice
from chalice_mail import Mail, Messageapp = Chalice(app_name='chalice-mail-test1')
mail = Mail(app)
mail.is_smtp = True
mail.smtp_using_tls = True
mail.username = "[email protected]"
mail.password = "world's_top_secret_password"
mail.smtp_server = 'smtp.example.com'
mail.smtp_port = 587
mail.login()@app.route('/send-smtp-mail')
def send_smtp_mail():
msg = Message(mail)
msg.subject = "this is the subject"
msg.add_recipient("[email protected]")
"""
Simply pass the html value to the html variable of Message instance.
"""
msg.html = "This is the email body.
"
mail.send_email(msg)
return {'message':'email sended successfully'}```
##### Using SMTP => Email with HTML rendering
```python
from chalice import Chalice
from chalice_mail import Mail, Message
from pathlib import Path
from os import pathapp = Chalice(app_name='chalice-mail-test1')
_baseDir = Path(path.realpath(__file__)).parent
mail = Mail(app)
mail.is_smtp = True
mail.smtp_using_tls = True
mail.username = "[email protected]"
mail.password = "world's_top_secret_password"
mail.smtp_server = 'smtp.example.com'
mail.smtp_port = 587
mail.template_dir = _baseDir/'templates' # required if using template rendering.
mail.login()@app.route('/send-smtp-mail')
def send_smtp_mail():
msg = Message(mail)
msg.subject = "this is the subject"
msg.add_recipient("[email protected]")
context={}
"""
This package comes with the jinja2 based template rendering system.
Simpley use the 'render_template()' function to rend the html file.
'render_template()' functions takes the html file name as arguments
and the context as well as.
"""
msg.html = mail.render_template('index.html', context)
mail.send_email(msg)
return {'message':'email sended successfully'}```
##### Using SMTP => Email with attachments
```python
from chalice import Chalice
from chalice_mail import Mail, Message
from pathlib import Path
from os import pathapp = Chalice(app_name='chalice-mail-test1')
_baseDir = Path(path.realpath(__file__)).parent
mail = Mail(app)
mail.is_smtp = True
mail.smtp_using_tls = True
mail.username = "[email protected]"
mail.password = "world's_top_secret_password"
mail.smtp_server = 'smtp.example.com'
mail.smtp_port = 587
mail.attachment_dir = _baseDir/'attachments' # required if using attachments.
mail.login()@app.route('/send-smtp-mail')
def send_smtp_mail():
msg = Message(mail)
msg.subject = "this is the subject"
msg.add_recipient("[email protected]")
msg.plain = "This is the email body."
"""
Use the 'add_attachments()' function to add the attachments
with the message instance. Don't forget to put the attachments
on the attachments folder.
'add_attachments()' function basically takes list or str data
type as argument. If you want to add only one attachment just pass
the attachment name. If you want to add more than one attachments use a list.
"""
msg.add_attachments(['python.png', 'README.rst'])
mail.send_email(msg)
return {'message':'email sended successfully'}```
## Installation
`chalice-mail` is available from `pypi`.
#### install using pip
```shell
pip install chalice-mail
```
#### install from source code
```shell
git clone https://github.com/marktennyson/chalice-mail && cd chalice-mail
python setup.py install --user
```## Compatibility
`chalice-mail` is compatiable with python3.6 and higher versions.
Not compatiable for Python version 2.## Contributing
We welcome contributions of all types!