import { Section, Text } from 'react-email'; import * as React from 'react'; import { content, paragraph } from '../css/styles'; import { EmailButton, MailBody } from '../partials/partials'; type Props = { destinationName: string; destinationType: string; lastError: string; failingSince: string; settingsLink: string; }; export const SiemDestinationFailingEmail = ({ destinationName, destinationType, lastError, failingSince, settingsLink, }: Props) => { return (
Hi there, Docmost cannot deliver audit events to your SIEM destination{' '} {destinationName} ({destinationType}). Last error: {lastError} Failing since {failingSince}. Docmost keeps retrying every 30 minutes. If the destination is still failing 24 hours after it started, it is disabled automatically.
View destination
); }; export default SiemDestinationFailingEmail;