Simple notification server that can be used to send to an email
136
This is a simple notification server that can be used to send notifications to an email. It is intended to be used with the TA-Automation app, but can be used for other purposes as well.
docker pull djharshit/notification-server
docker run -d -p 5000:5000 djharshit/notification-server
import requests
requests.post('http://localhost:5000/email', json={
'to': 'sender-email',
'subject': 'subject',
'message': 'message'}
)
Content type
Image
Digest
sha256:4b405a947…
Size
372 MB
Last updated
over 2 years ago
docker pull djharshit/notification-server:1946584