mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-15 09:32:22 +03:00
d54f370ed4
# 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):
27 lines
1.0 KiB
Plaintext
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.
|
|
|
|
|