An open API service indexing awesome lists of open source software.

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

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"]
}
]
}