mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-14 17:03:29 +03:00
1f21c6d7f3
# Description Move some folders to packages Remove unused code
43 lines
1.0 KiB
Python
43 lines
1.0 KiB
Python
from fastapi import APIRouter
|
|
from logger import get_logger
|
|
from models import ContactsSettings
|
|
from packages.emails.send_email import send_email
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class ContactMessage(BaseModel):
|
|
customer_email: str
|
|
content: str
|
|
|
|
|
|
router = APIRouter()
|
|
logger = get_logger(__name__)
|
|
|
|
|
|
def resend_contact_sales_email(customer_email: str, content: str):
|
|
settings = ContactsSettings()
|
|
mail_from = settings.resend_contact_sales_from
|
|
mail_to = settings.resend_contact_sales_to
|
|
body = f"""
|
|
<p>Customer email: {customer_email}</p>
|
|
<p>{content}</p>
|
|
"""
|
|
params = {
|
|
"from": mail_from,
|
|
"to": mail_to,
|
|
"subject": "Contact sales",
|
|
"reply_to": customer_email,
|
|
"html": body,
|
|
}
|
|
|
|
return send_email(params)
|
|
|
|
|
|
@router.post("/contact")
|
|
def post_contact(message: ContactMessage):
|
|
try:
|
|
resend_contact_sales_email(message.customer_email, message.content)
|
|
except Exception as e:
|
|
logger.error(e)
|
|
return {"error": "There was an error sending the email"}
|