Files
recap/node_modules/@start9labs/start-sdk/base/lib/osBindings/TestSmtpParams.d.ts
T

11 lines
228 B
TypeScript

import type { SmtpSecurity } from './SmtpSecurity';
export type TestSmtpParams = {
host: string;
port: number;
from: string;
to: string;
username: string;
password: string;
security: SmtpSecurity;
};