https://github.com/orisano/sese
sese is extended ses mock based on moto-server
https://github.com/orisano/sese
Last synced: about 1 year ago
JSON representation
sese is extended ses mock based on moto-server
- Host: GitHub
- URL: https://github.com/orisano/sese
- Owner: orisano
- License: mit
- Created: 2019-02-22T19:37:19.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-08-02T02:49:00.000Z (almost 3 years ago)
- Last Synced: 2025-05-07T20:07:10.215Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 266 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sese
sese is moto-server based extended ses mock.
## How to use
### Server
```bash
docker pull orisano/sese
docker run --init -p 5000:5000 orisano/sese
```
or
```bash
git clone --depth=1 https://github.com/orisano/sese
cd sese
docker build -t sese .
docker run --init -p 5000:5000 sese
```
### Client
```bash
# pip install awscli
# aws configure
aws --endpoint-url http://localhost:5000 ses verify-domain-identity --domain example.com
aws --endpoint-url http://localhost:5000 ses send-email --from me@example.com --to to@example.com --subject Test --text Hello
curl http://localhost:5000/message/to@example.com
```
```json
[
{
"body": "Hello",
"source": "me@example.com",
"subject": "Test"
}
]
```
## Author
Nao Yonashiro (@orisano)
## License
MIT