export enum EEmailTemplate {
  EXCEPTION_NOTIFY = 'exception-notify',
  NEW_MESSAGE = 'new-message',
}

export type EmailTemplateData = {
  [EEmailTemplate.EXCEPTION_NOTIFY]: {
    namespace: string;
    exceptionType: string;
    stackString: string;
  };
  [EEmailTemplate.NEW_MESSAGE]: {
    ticketName: string;
    message: string;
  };
};
