https://github.com/corruptmem/postman
Listens for emails via AMQP and manages the delivery
https://github.com/corruptmem/postman
Last synced: about 2 months ago
JSON representation
Listens for emails via AMQP and manages the delivery
- Host: GitHub
- URL: https://github.com/corruptmem/postman
- Owner: corruptmem
- Created: 2012-02-13T20:38:40.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2012-02-14T01:26:48.000Z (over 14 years ago)
- Last Synced: 2024-04-15T18:19:02.823Z (about 2 years ago)
- Homepage:
- Size: 93.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
Listens for emails via AMQP and manages the delivery.
Mail message format:
{
"subject": "Email subject",
"text": "1234",
"html": "1234",
"from": "xyz@domain.com",
"attachments": [
{
"data": "x84maox09c...",
"type": "image/jpeg",
"inline": true,
"name": "file.jpg"
}
]
"deliveries": [
{
"to": ["a@b.com", "b@c.com"],
"cc": ["x@y.com"]
"bcc": ["a@x.com"]
}
]
}