Esse projeto é uma API criada utilizando Java,Java Spring e AWS Simple Email Service.
Foi desenvolvido para resolver o desafio do Uber Backend Challenge.
Esse projeto foi desenvolvido com base no video : Kipper Dev
This project was created using Java, Java Spring, and AWS Simple Email Service.
The project addressed the issue described in the following link Uber Backend Challenge.
This project was developed with base on the video : Kipper Dev
- Clone the repository:
git clone [email protected]:PedroH183/ServiceEmail.git
-
Install dependencies with Maven
-
Update
application.properties
puting your AWS Credentials
aws.region=us-east-1
aws.accessKeyId=1111111
aws.secretKey=111111
- Start the application with Maven
- The API will be accessible at http://localhost:8080
The API provides the following endpoints:
GET EMAIL
POST /api/email - Send a e-mail from your sender to the destination
BODY
{
"to" : "[email protected]",
"subject" : "teste",
"body" : "testando ... testando ..."
}