smtp configuration model class
This commit is contained in:
parent
f184b7fefb
commit
04fa395233
@ -66,3 +66,4 @@ export * from './importCsvResponse';
|
|||||||
export * from './fileAttributeConfig';
|
export * from './fileAttributeConfig';
|
||||||
export * from './fileAttributesBaseConfigRequest';
|
export * from './fileAttributesBaseConfigRequest';
|
||||||
export * from './removeDownloadRequest';
|
export * from './removeDownloadRequest';
|
||||||
|
export * from './smtpConfigurationModel';
|
||||||
|
|||||||
16
libs/red-ui-http/src/lib/model/smtpConfigurationModel.ts
Normal file
16
libs/red-ui-http/src/lib/model/smtpConfigurationModel.ts
Normal 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;
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user