Search code examples
springtextspring-bootsmsmessage

How can i send sms to mobile from spring boot application


I m building a web application with spring boot. Its kind of ecommerce site. I want to send sms text message to users mobile and email message to user email.

Is there any free Apis available for it or any technical solution for it. I need This feature in india..

Thanks in advance...


Solution

  • There are providers for sending SMS like https://www.twilio.com/sms. It has a Rest-API. My experience from a couple of years ago is that sending a considerable amount of SMS costs money, but it is possible that free offers exist today.

    Sending emails can be done with an ordinary SMTP-server. You can manage one on your own or use one of a provider. Spring has a high-level API for sending emails: http://docs.spring.io/spring/docs/current/spring-framework-reference/html/mail.html.