Files
b2b/app/view/emails.go
2026-04-10 15:17:29 +02:00

25 lines
344 B
Go

package view
type EmailLayout[T any] struct {
LangID uint
Data T
}
type EmailVerificationData struct {
VerificationURL string
}
type EmailAdminNotificationData struct {
UserName string
UserEmail string
BaseURL string
}
type EmailPasswordResetData struct {
ResetURL string
}
type EmailNewOrderPlacedData struct {
UserID uint
}