> For the complete documentation index, see [llms.txt](https://docs.startupstarterkits.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.startupstarterkits.com/ssk-pro-features/index-3/chapter-1.md).

# 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.
