Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(feedback): add README for AWS SES #838

Merged
merged 3 commits into from
Apr 7, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions app/web/src/app/api/submitFeedback/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
In order to send user's feedback for sending and recieving emails, AWS SES (Simple Email Service) is used. An email is required to be verified on AWS SES Console in order to start receiving feedbacks.

### 1. Follow this guide to create AWS account if you haven't had one

https://docs.aws.amazon.com/accounts/latest/reference/welcome-first-time-user.html#getting-started-prerequisites


### 2. Verify destination email in AWS SES

- Log into [AWS SES Console](https://ca-central-1.console.aws.amazon.com/ses/home?region=ca-central-1#/account).

- Chose **Identities** and **Create identity**.

- Create new domain/email that will be used to receive feedback.

- A link for verification will be sent to the newly added email. After confirm email ownership, the email can be authorized to receive feedback.

### 3. Configure environment variables:
- Set the `[NOREPLY_EMAIL]` environment variable in `.env.local` to the newly created verified email address.
Loading