Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
titleMail Configuration - Typescript
interface IMailConfig { 
    canned?:IMailConfigCanned, // can be used to overweiteoverwrite standard email messages send / proposed by the system
    custom?:IMailConfigCustom[] // allows to add entries to the send mail tool menu to quickly send pre-configured messages
}

interface IMailConfigCanned { 
    please_sign?:string, // replacement for please sign message (in SIGN page)
    look_at?:string, // replacement for look at item message (in tool menu)
    release_note?:string, // replacement for document released message (in SIGN page)
    new_user?:string  // replacement for mail to new user (admin client)
}

interface IMailConfigCustom { 
    name:string, // name of this mail in send to menu 
    categories:string[], // categories for which message should be available
    to:string[], // a list of users who should get the message
    subject:string, // the subject
    message:string // the message
}

...