router.post('/send_email', function (req, res) {
    sendEmail() // send email async
    res.json({ "name": "dangvanduc90" }) // return some data
})