quivr/docs/configuring/resend-emails.mdx
Stan Girard d54f370ed4
docs: add new configuration items (#2483)
# Description

Please include a summary of the changes and the related issue. Please
also include relevant motivation and context.

## Checklist before requesting a review

Please delete options that are not relevant.

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
- [ ] I have commented hard-to-understand areas
- [ ] I have ideally added tests that prove my fix is effective or that
my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged

## Screenshots (if appropriate):
2024-04-24 03:34:24 -07:00

27 lines
1.0 KiB
Plaintext

---
title: Emails
description: Allow Quivr to send emails
---
# Emails with Resend
Quivr uses the [Resend](https://resend.com/) service to send emails. Resend is a transactional email service that allows you to send emails from your application. This guide will show you how to set up Resend in Quivr.
## Setting up Resend
To set up Resend in Quivr, you need to configure the following environment variables in your `.env` file:
```bash
# Resend Configuration
RESEND_API_KEY=<change-me>
RESEND_EMAIL_ADDRESS=<change-me>
RESEND_CONTACT_SALES_FROM=<change-me>
RESEND_CONTACT_SALES_TO=<change-me>
```
You can get the `RESEND_API_KEY` from your Resend account. The `RESEND_EMAIL_ADDRESS` is the email address that will be used to send emails from your application. The `RESEND_CONTACT_SALES_FROM` and `RESEND_CONTACT_SALES_TO` are the email addresses that will be used for sales-related inquiries.
Make sure that these emails and domains have been verified in your Resend account to avoid any issues with sending emails.