-
Notifications
You must be signed in to change notification settings - Fork 150
Description
I am trying to complete setup in my lab (cluster environment OSE 3.2).
Everything is working fine apart from email-api.
Email api pod also is running.
http://emailsvc-microsrv.cloudapps.teg.com/email -- it is also responding with "Email API 2"
When I use to do testing with following command, its showing error and not able to receive mail in my mail box.
curl -X POST -d '{"to":"xxxxx@gmail.com","msg":"test mail"}' -H "Content-Type: application/json" http://emailsvc-microsrv.cloudapps.teg.com/email
Error coming as follows ..
//
<title>Internal Server Error</title>Internal Server Error
//
I did rsh inside the pod of email-api and executed same command and output as follows ..
sh-4.2$ curl http://localhost:8080/email
Email API 2sh-4.2$
sh-4.2$
sh-4.2$
sh-4.2$ curl -X POST -d '{"to":"prasenforu@gmail.com","msg":"test mail"}' \
<title>Internal Server Error</title>-H "Content-Type: application/json" http://localhost:8080/email
Internal Server Error
sh-4.2$Please help me to troubleshoot.