feat: Add email when webhook is disabled (#3721)
fix: Webhook not disabled under some error conditions
This commit is contained in:
63
server/emails/templates/WebhookDisabledEmail.tsx
Normal file
63
server/emails/templates/WebhookDisabledEmail.tsx
Normal file
@@ -0,0 +1,63 @@
|
||||
import * as React from "react";
|
||||
import BaseEmail from "./BaseEmail";
|
||||
import Body from "./components/Body";
|
||||
import Button from "./components/Button";
|
||||
import EmailTemplate from "./components/EmailLayout";
|
||||
import EmptySpace from "./components/EmptySpace";
|
||||
import Footer from "./components/Footer";
|
||||
import Header from "./components/Header";
|
||||
import Heading from "./components/Heading";
|
||||
|
||||
type Props = {
|
||||
to: string;
|
||||
teamUrl: string;
|
||||
webhookName: string;
|
||||
};
|
||||
|
||||
/**
|
||||
* Email sent to the creator of a webhook when the webhook has become disabled
|
||||
* due to repeated failure.
|
||||
*/
|
||||
export default class WebhookDisabledEmail extends BaseEmail<Props> {
|
||||
protected subject() {
|
||||
return `Warning: Webhook disabled`;
|
||||
}
|
||||
|
||||
protected preview({ webhookName }: Props) {
|
||||
return `Your webhook (${webhookName}) has been disabled`;
|
||||
}
|
||||
|
||||
protected renderAsText({ webhookName, teamUrl }: Props): string {
|
||||
return `
|
||||
Your webhook (${webhookName}) has been automatically disabled as the last 25
|
||||
delivery attempts have failed. You can re-enable by editing the webhook.
|
||||
|
||||
Webhook settings: ${teamUrl}/settings/webhooks
|
||||
`;
|
||||
}
|
||||
|
||||
protected render({ webhookName, teamUrl }: Props) {
|
||||
return (
|
||||
<EmailTemplate>
|
||||
<Header />
|
||||
|
||||
<Body>
|
||||
<Heading>Webhook disabled</Heading>
|
||||
<p>
|
||||
Your webhook ({webhookName}) has been automatically disabled as the
|
||||
last 25 delivery attempts have failed. You can re-enable by editing
|
||||
the webhook.
|
||||
</p>
|
||||
<EmptySpace height={10} />
|
||||
<p>
|
||||
<Button href={teamUrl + "/settings/webhooks"}>
|
||||
Webhook settings
|
||||
</Button>
|
||||
</p>
|
||||
</Body>
|
||||
|
||||
<Footer />
|
||||
</EmailTemplate>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user