Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lucassklp/email.management
Send e-mails, create and edit templates using Rest API
https://github.com/lucassklp/email.management
email-manager email-marketing email-sender email-template
Last synced: 2 months ago
JSON representation
Send e-mails, create and edit templates using Rest API
- Host: GitHub
- URL: https://github.com/lucassklp/email.management
- Owner: lucassklp
- Created: 2021-02-12T21:26:59.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-03-14T10:08:53.000Z (almost 3 years ago)
- Last Synced: 2023-10-08T18:36:10.573Z (about 1 year ago)
- Topics: email-manager, email-marketing, email-sender, email-template
- Language: C#
- Homepage:
- Size: 4.14 MB
- Stars: 7
- Watchers: 3
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Send e-mails, create and edit templates using Rest API
## How to run
### Define a Secret
Before running this service, you must setup your secret. This secret is used as encryption key in order to save your email credentials on database. **Be careful: don't use the default value.**
To do that, go to [docker-compose.yaml](./docker-compose.yaml) and change the following value:
```yaml
environment:
JwtSecret: "change this value" # This line is your Jwt Token symetric key
PasswordSecret: "change this value" # This line is your Password Secret Key (used to encrypt your password on database)
```### Running
After running the code below, you can access the service by accessing http://localhost:4000
```sh
docker compose up -d
```## Check the endpoints definitions
After running, you can see the endpoint definitions in http://localhost:4000/swagger/index.html