Files
TheGrapefruitsDuo/server/app/routers/contact.py
Lucas Jensen 5d67c0c2b2 initial commit
2024-05-01 09:19:01 -07:00

19 lines
560 B
Python

from fastapi import APIRouter, status
from app.admin.contact import send_email
from app.models.contact import Contact
router = APIRouter(
prefix="/contact",
tags=["contact"],
responses={404: {"description": "Not found"}},
)
@router.post("/", status_code=status.HTTP_201_CREATED)
async def post_message(contact: Contact):
"""Sends an email to the site owner with the provided name, email, and message."""
subject = f"New message from {contact.name}"
body = f"From: {contact.email}\n\n{contact.message}"
send_email(subject, body)