Skip to content

Commit

Permalink
Add scripts for file-expiry emails (#20)
Browse files Browse the repository at this point in the history
Add custom email type for notifying users when their files expire


![image](https://github.com/user-attachments/assets/39c1ff8d-13ec-417c-b884-9be5330852e5)

Continuation of #18
  • Loading branch information
cehune authored Oct 28, 2024
1 parent 7b2e0f8 commit b1246ad
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions emails/file-expiry.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
import {
Hr,
Link,
Section,
Text
} from "@react-email/components";
import { z } from "zod";
import { WATcloudEmail } from "./_common/watcloud-email";

const EmailProps = z.object({
name: z.string(),
paths: z.array(z.string()),
daysForExpiry: z.string(),
deletionDate: z.string()
});

type EmailProps = z.infer<typeof EmailProps>;

const Email = (props: EmailProps) => {
const { name, paths, daysForExpiry, deletionDate } = EmailProps.parse(props);

const previewText = `Some of your files in the WATcloud compute cluster are expiring soon`;

const expiredPaths = (
<div>
<ul style={{ fontSize: "14px", lineHeight: "24px" }}>
{paths.map(path => (
<li key={path}>{path}</li>
))}
</ul>
</div>
);

return (
<WATcloudEmail previewText={previewText}>
<Text>Hi {name},</Text>
<Text>
In an ongoing effort to keep WATcloud's file storage efficient and maintain optimal performance, we routinely clean up specific directories that haven't been accessed in the past {daysForExpiry} days.
</Text>
<Hr />
<Section>
<Text>The following paths are expired:</Text>
{expiredPaths}
</Section>
<Hr />
<Text style={{ fontWeight: 'bold' }}>
If you do not access files in any of these directories, then they will be automatically deleted on {deletionDate}.
</Text>
<Text>
If you have any questions, please reach out to your <Link href="https://cloud.watonomous.ca/docs/services#watcloud-contact" style={{ color: "#1e90ff", textDecoration: "none" }}>WATcloud contact</Link> or the WATcloud team at <Link href={`mailto:[email protected]`} style={{ color: "#1e90ff", textDecoration: "none" }}>[email protected]</Link>.
</Text>
</WATcloudEmail>
);
};

Email.PreviewProps = {
name: "John Doe",
paths: ["delta-ubuntu2:/var/lib/cluster/users/1234/docker", "delta-ubuntu2:/var/lib/cluster/users/1234/containers", "tr-ubuntu3:/var/lib/cluster/users/1234/containers", "/mnt/wato-drive2/someuser", "/mnt/wato-drive2/other"],
daysForExpiry: "70",
deletionDate: "2025-01-01"
} as EmailProps;

export default Email;

0 comments on commit b1246ad

Please sign in to comment.