mirror of
https://github.com/documenso/documenso.git
synced 2025-11-11 04:52:41 +10:00
14 lines
441 B
TypeScript
14 lines
441 B
TypeScript
import { env } from '../utils/env';
|
|
|
|
export const FROM_ADDRESS = env('NEXT_PRIVATE_SMTP_FROM_ADDRESS') || 'noreply@documenso.com';
|
|
export const FROM_NAME = env('NEXT_PRIVATE_SMTP_FROM_NAME') || 'Documenso';
|
|
|
|
export const SERVICE_USER_EMAIL = 'serviceaccount@documenso.com';
|
|
|
|
export const EMAIL_VERIFICATION_STATE = {
|
|
NOT_FOUND: 'NOT_FOUND',
|
|
VERIFIED: 'VERIFIED',
|
|
EXPIRED: 'EXPIRED',
|
|
ALREADY_VERIFIED: 'ALREADY_VERIFIED',
|
|
} as const;
|