11 lines
228 B
TypeScript
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;
|
|
};
|