Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 399 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 399 Bytes

email-service

Setup

Run npm install

Start development server

Run npm run build-and-watch in one console window.

Run npm run serve in another console window.

APIs

  • GET /email/v1/timestamp

  • POST /email/v1/send

{
  "sender_email": string,
  "recipient_email": string,
  "template_id": number,
  "params": {
    "displayed_name": string,
    "otp": string,
  }
}