https://github.com/ulbora/ulboramailservice
A mail sending microservice
https://github.com/ulbora/ulboramailservice
Last synced: about 2 months ago
JSON representation
A mail sending microservice
- Host: GitHub
- URL: https://github.com/ulbora/ulboramailservice
- Owner: Ulbora
- License: agpl-3.0
- Created: 2017-03-05T02:19:33.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-06-09T18:00:33.000Z (about 8 years ago)
- Last Synced: 2025-06-05T06:26:41.231Z (about 1 year ago)
- Language: JavaScript
- Size: 51.8 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Ulbora Mail Service
==============
A Mail Micro Service
## Sent Mail
```
POST:
URL: http://localhost:3002/rs/sendMail
Example Text Request
{
"toEmail":"someMail@some.com",
"fromEmail":"someOther2some.com",
"subject":"more test",
"text":"this is a test",
"clientId":1
}
```
```
POST:
URL: http://localhost:3002/rs/sendMail
Example HTML Request
{
"toEmail":"someMail@some.com",
"fromEmail":"someOther2some.com",
"subject":"more test",
"html":"
Copyright (C) 2016 Ulbora Labs LLC. (www.ulboralabs.com)
All rights reserved.
",
"clientId":1
}
```
```
Example Response
{
"success": true
}
```