https://github.com/biswajitthakur/toy-ses
Simple Email Service
https://github.com/biswajitthakur/toy-ses
Last synced: about 2 months ago
JSON representation
Simple Email Service
- Host: GitHub
- URL: https://github.com/biswajitthakur/toy-ses
- Owner: BiswajitThakur
- Created: 2025-01-31T14:52:05.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-02-03T07:03:40.000Z (4 months ago)
- Last Synced: 2025-02-09T19:39:05.993Z (3 months ago)
- Language: Go
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# toy-ses
Simple Email Service
## 🚧 Under Development 🚧
## Start server
```bash
GIN_MODE=release go run .
```## Send Email
```
POST /api/email/send/Header:
Content-Type: application/jsonBody: {"subject":"","body":""}
```#### Response On Success
```json
{"status":"success"}
```#### Response On Failure
```json
{"status":"faild"}
```## Count Email
```
GET /api/email/count
```#### Response
```json
{"faild_count":,"success_count":}
```## Test
```
GIN_MODE=release go test
```