feat: add email diagnostics
This commit is contained in:
@@ -59,6 +59,21 @@ export interface SmsDiagnosticsResult {
|
||||
error: string | null;
|
||||
}
|
||||
|
||||
export interface EmailDiagnosticsResult {
|
||||
host: string;
|
||||
port: number;
|
||||
from: string;
|
||||
smtpAuth: boolean;
|
||||
startTls: boolean;
|
||||
usernameConfigured: boolean;
|
||||
passwordConfigured: boolean;
|
||||
ok: boolean;
|
||||
reachable: boolean;
|
||||
elapsedMs: number;
|
||||
checkedAt: string;
|
||||
error: string | null;
|
||||
}
|
||||
|
||||
export interface Team {
|
||||
id: number;
|
||||
code: string;
|
||||
|
||||
Reference in New Issue
Block a user