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

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

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
}

```