9 lines
148 B
TypeScript
9 lines
148 B
TypeScript
export interface EmailRequest {
|
|
server: string;
|
|
from: string;
|
|
password: string;
|
|
port: number;
|
|
ssl: boolean;
|
|
user: string;
|
|
}
|