The server behind https://feedback.egodact.com that's used internally to process all incoming feedback. Currently, this 'processing' is performed by simply forwarding received feedback via e-mail; this may change in the future.
Provide an .env file with the following environment variables:
MAILER_HOST=smtp.example.com
[email protected]
MAILER_USER_PASSWORD=password
Make a POST request to /feedback/create with the following JSON body:
{
"feedback": "Foo bar",
"sender_email": "[email protected]"
}Note: the sender_email field is optional.