feat: Implement contact message functionality including API endpoints, database storage, and email notifications.
This commit is contained in:
@@ -135,3 +135,12 @@ model File {
|
||||
|
||||
@@index([folder, originalName])
|
||||
}
|
||||
|
||||
model ContactMessage {
|
||||
id String @id @default(uuid())
|
||||
name String
|
||||
email String
|
||||
subject String?
|
||||
message String
|
||||
createdAt DateTime @default(now())
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user