# Setting Up Email Server

## Step 1 - Set Up Environment Variables

To send emails, you need to configure your environment variables. In the root of your project, create or update the `.env` file with the following values:

```bash
EMAIL_SERVER_HOST=smtp.your-email-provider.com
EMAIL_SERVER_PORT=587
EMAIL_SERVER_USER=your-email@domain.com
EMAIL_SERVER_PASSWORD=your-email-password
FULL_URL=https://your-domain.com
```

These environment variables are required to connect to your SMTP email service and define your application’s base URL.

Make sure to replace the placeholder values with the actual credentials provided by your email service provider.


---

# 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.startupstarterkits.com/ssk-pro-features/index-3/chapter-1.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.
