# SMTP server

Fabricate sends email messages when users are invited to an account or need to reset their password.

## Setting up Amazon SES

To use Amazon Simple Email Service (Amazon SES) to send email messages:

1. Under **Identity Management > Domains**, add the domain where Fabricate will be hosted.\
   You later set this as the value of  `FABRICATE_DOMAIN`.
2. Under **Identity Management > Emails**, add a `no-reply@(your domain)` email address.
3. Under **Email Sending > SMTP Settings**, create your SMTP credentials.

## Configuring the email service

In `.env`, configure the following:

{% code overflow="wrap" %}

```
FABRICATE_MAIL_ADDRESS=  # Email host. Typically similar to "email-smtp.us-west-2.amazonaws.com"
FABRICATE_MAIL_PORT=587

FABRICATE_MAIL_USER_NAME=  # Email username. Typically similar to "AKIAIOSFODNN7EXAMPLE"
FABRICATE_MAIL_PASSWORD=  # Email password. Typically similar to "wJarXUtnFMI/K7MDNG/bPxRfiCYEXAMPLEKEY"
FABRICATE_MAIL_FROM=no-reply@(your domain)
```

{% endcode %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.tonic.ai/fabricate/self-hosting-fabricate/configuring-fabricate/smtp-server.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
