fix: Refactor collection exports to not send email attachment (#2460)
Co-authored-by: Tom Moor <tom.moor@gmail.com>
This commit is contained in:
47
server/emails/ExportFailureEmail.js
Normal file
47
server/emails/ExportFailureEmail.js
Normal file
@ -0,0 +1,47 @@
|
||||
// @flow
|
||||
import * as React from "react";
|
||||
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";
|
||||
|
||||
export const exportEmailFailureText = `
|
||||
Your Data Export
|
||||
|
||||
Sorry, your requested data export has failed, please visit the admin
|
||||
section to try again – if the problem persists please contact support.
|
||||
`;
|
||||
|
||||
export const ExportFailureEmail = ({ teamUrl }: { teamUrl: string }) => {
|
||||
return (
|
||||
<EmailTemplate>
|
||||
<Header />
|
||||
|
||||
<Body>
|
||||
<Heading>Your Data Export</Heading>
|
||||
<p>
|
||||
Sorry, your requested data export has failed, please visit the{" "}
|
||||
<a
|
||||
href={`${teamUrl}/settings/import-export`}
|
||||
rel="noreferrer"
|
||||
target="_blank"
|
||||
>
|
||||
admin section
|
||||
</a>
|
||||
. to try again – if the problem persists please contact support.
|
||||
</p>
|
||||
<EmptySpace height={10} />
|
||||
<p>
|
||||
<Button href={`${teamUrl}/settings/import-export`}>
|
||||
Go to export
|
||||
</Button>
|
||||
</p>
|
||||
</Body>
|
||||
|
||||
<Footer />
|
||||
</EmailTemplate>
|
||||
);
|
||||
};
|
Reference in New Issue
Block a user