Skip to content

Commit

Permalink
Merge pull request #95 from factly/feat/email-configuration
Browse files Browse the repository at this point in the history
added the steps to follow for configuring email server on mailgun
  • Loading branch information
shreeharsha-factly authored Nov 22, 2021
2 parents 1eb01bb + 8f9495a commit 9fab178
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,12 @@ Once the application is up and running you should be able to access it using the
### Env files to be added

- Create config file with name config (and extension .env, .yml, .json) in root folder and add config variables (see config.env.example for reference)
- Create a folder `companion` in root and create `.env` file inside companion and add config variables (see .env.example for reference)
- Create a folder `companion` in root and create `.env` file inside companion and add config variables (see .env.example for reference)

### Setting up the email server

- Create a mailgun account.
- On the dashboard click on one of the sending domains.
- Select the SMTP method for sending the email.
- In kratos config file, add the smtp connection URI. Format of the URI is smtp://username:password@smtp.mailgun.org:port/?skip_ssl_verify=true
- Example : smtp://[email protected]:somerandompassword123@smtp.mailgun.org:587/?skip_ssl_verify=true

0 comments on commit 9fab178

Please sign in to comment.