Skip to content

premkumarmcse/Spring-Boot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Communique

Communique is a microservice responsible for any communication from the application to subscribers of the application or subscriber’s customers. The service is responsible for delivering any communication (both transactional and notification) emails/sms.

Pre-requisites

Application uses the below environment/platform

  • MySQL
  • Java 8+
  • Spring Boot
  • Swagger2
  • SendGrid Email API

Dependencies Used

Swagger2

        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
            <version>2.9.2</version>
        </dependency>
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
            <version>2.9.2</version>
        </dependency>

SendGrid

        <dependency>
            <groupId>com.sendgrid</groupId>
            <artifactId>sendgrid-java</artifactId>
        </dependency>

Clone

  • Clone this repo to your local machine using https://github.com/premkumarmcse/Spring-Boot.git

Usage

Swagger UI

http://localhost:8080/swagger-ui.html#/

Send Email API

Use of this API is to send an email to single recipient

From Email Address: [email protected]
To: any single email address

i.e. "[email protected]"

Send Bulk Email API

Use of this API is to send email to multiple recipients by seperating the email address by ';'

From Email Address: [email protected]
To: Multiple email address seperated by using ';'

i.e. "[email protected];[email protected];[email protected]"

Update Email Limits API

Use of this API is to update the maximum email limits

  • For now, Admin users only able to change their maximum email limits which is predefined.
userName: Admin username
newMaxLimit: The new max email limits

About

Spring boot projects

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published