Contact Us API Microservice
Features
- Contact us microservice (on Mailgun)
- Checks if email (really) exists
- Internationalized
Install
npm i -S @talaikis/contact-us
Usage
import { start, config } from '@talaikis/contact-us'
config('test@test.com', 'talaikis.com', 'key-XXXXX', 'test2@test.com', 'blahblah')
start(3000)
Sample request
import { post } from 'axios'
const contactApi = (name, email, message, done) => {
const locale = 'en'
const CONTACT_API_KEY = ''
const CONTACT_API_URL = ''
post(CONTACT_API_URL, {
method: 'POST',
msg: message,
key: CONTACT_API_KEY,
locale,
name,
email,
headers: {
'Content-Type': 'application/json'
}
})
.then((data) => {
done(null, data.data)
})
.catch((err) => {
done({ error: err.message })
})
}
API Responses
{ "status": "sent" }
{ "status": "<some error>" }
TODO
- translate strings to x languages
- more providers
Licence
MIT