> For the complete documentation index, see [llms.txt](https://docs.tonic.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tonic.ai/fabricate/self-hosting-fabricate/configuring-fabricate/smtp-server.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
