smtp configuration model class

This commit is contained in:
Timo 2021-03-26 09:43:26 +02:00
parent f184b7fefb
commit 04fa395233
2 changed files with 17 additions and 0 deletions

View File

@ -66,3 +66,4 @@ export * from './importCsvResponse';
export * from './fileAttributeConfig';
export * from './fileAttributesBaseConfigRequest';
export * from './removeDownloadRequest';
export * from './smtpConfigurationModel';

View File

@ -0,0 +1,16 @@
export interface SMTPConfigurationModel {
from?: string;
fromDisplayName?: string;
envelopeFrom?: string;
host?: string;
port?: number;
replyTo?: string;
replyToDisplayName?: string;
ssl?: boolean;
starttls?: boolean;
// if AUTH is true, following must also be set
auth?: boolean;
user?: string;
password?: string;
}