A Spring Boot starter that will help you configure SendGrid within the application context.
In order to add SendGrid to your project simply add this dependency to your classpath:
repositories {
jcenter()
}
dependencies {
compile("com.github.deathman92:sendgrid-spring-boot-starter:1.0.0")
}
<dependency>
<groupId>com.github.deathman92</groupId>
<artifactId>sendgrid-spring-boot-starter</artifactId>
<version>1.0.0</version>
</dependency>
sendgrid.api-key= // your apiKey (https://app.sendgrid.com/settings/api_keys)
sendgrid.test= // is used in test mode
sendgrid.host= // host of endpoint [default: api.sendgrid.com]
sendgrid.version= // version of endpoint [default: v3]