mirror of
https://github.com/QuivrHQ/quivr.git
synced 2025-01-05 23:03:53 +03:00
1f21c6d7f3
# Description Move some folders to packages Remove unused code
11 lines
220 B
Python
11 lines
220 B
Python
from typing import Dict
|
|
|
|
import resend
|
|
from models import ResendSettings
|
|
|
|
|
|
def send_email(params: Dict):
|
|
settings = ResendSettings()
|
|
resend.api_key = settings.resend_api_key
|
|
return resend.Emails.send(params)
|