-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding support for SMTP-based emails (#383)
* Introducing smtp sender * Remove old sendgrid config * alpha * Email doc * copy templates * Readme and versions * lock versions * remove stuff * Customise quick start * Moving some options to advanced settings * Improve docker compose editor
- Loading branch information
1 parent
f9de4bb
commit 03a8cbc
Showing
37 changed files
with
1,057 additions
and
201 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,10 +32,13 @@ OKTA_SECRET= | |
BASE_URL=http://localhost:3000 | ||
SECURE_COOKIES=false | ||
SENDGRID_API_KEY= | ||
SENDGRID_SENDER= | ||
SENDGRID_VERIFICATION_EMAIL_TID= | ||
SENDGRID_RESET_PASSWORD_TID= | ||
SENDGRID_SELF_HOST_EMAIL_TID= | ||
SENDGRID_SENDER=[email protected] | ||
MAIL_SMTP_HOST= | ||
MAIL_PORT=465 | ||
MAIL_SECURE=true | ||
MAIL_USER= | ||
MAIL_PASSWORD= | ||
MAIL_SENDER=[email protected] | ||
STRIPE_SECRET= | ||
STRIPE_KEY= | ||
STRIPE_WEBHOOK_SECRET= | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: 'Alpha Build' | |
|
||
on: | ||
push: | ||
branches: [v4140/integration] | ||
branches: [v4140/x] | ||
|
||
jobs: | ||
build: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<div>Hello {{name}}!</div> | ||
<div><br></div> | ||
<div>Please click on the email below to validate your email and start using Retrospected right away.</div> | ||
<div><br></div> | ||
<div><a href="{{domain}}/validate?email={{email}}&code={{code}}">{{domain}}/validate?email={{email}}&code={{code}}</a></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<div style="font-family: inherit; text-align: inherit">Hi {{name}},</div> | ||
<div style="font-family: inherit; text-align: inherit"><br></div> | ||
<div style="font-family: inherit; text-align: inherit">To reset your password, follow the link:</div> | ||
<div style="font-family: inherit; text-align: inherit"><br></div> | ||
<div style="font-family: inherit; text-align: inherit"><a href="{{domain}}/reset?email={{email}}&code={{code}}">{{domain}}/reset?email={{email}}&code={{code}}</a></div> |
Oops, something went wrong.