2024-11-17 16:31:34 +01:00
|
|
|
import {
|
|
|
|
|
Text,
|
|
|
|
|
} from "@react-email/components";
|
|
|
|
|
import * as React from "react";
|
|
|
|
|
import EmailLayout from "./EmailLayout";
|
2024-11-17 19:24:59 +01:00
|
|
|
import {Button} from "@react-email/button";
|
2024-11-17 16:31:34 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
export const TestEmailSettings = () => {
|
|
|
|
|
return (
|
|
|
|
|
<EmailLayout
|
2024-11-17 19:24:59 +01:00
|
|
|
preview="Email Setup"
|
2024-11-17 16:31:34 +01:00
|
|
|
>
|
2024-11-17 19:24:59 +01:00
|
|
|
|
2024-11-17 16:31:34 +01:00
|
|
|
<Text
|
|
|
|
|
className="text-base font-light leading-8 text-green-800 "
|
2024-11-17 19:24:59 +01:00
|
|
|
|
2024-11-17 16:31:34 +01:00
|
|
|
>
|
2024-11-17 19:24:59 +01:00
|
|
|
Hi, your email settings are setup !
|
2024-11-17 16:31:34 +01:00
|
|
|
</Text>
|
2024-11-17 19:24:59 +01:00
|
|
|
|
|
|
|
|
|
2024-11-17 16:31:34 +01:00
|
|
|
<Text
|
2024-11-17 19:24:59 +01:00
|
|
|
className="text-base font-light leading-8 text-green-800 "
|
|
|
|
|
|
|
|
|
|
>
|
|
|
|
|
Best regard,
|
|
|
|
|
</Text> <Text
|
|
|
|
|
className="text-base font-light leading-8 text-green-800 "
|
|
|
|
|
|
|
|
|
|
>
|
|
|
|
|
Portabase
|
|
|
|
|
</Text>
|
|
|
|
|
|
2024-11-17 16:31:34 +01:00
|
|
|
</EmailLayout>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-11-17 19:24:59 +01:00
|
|
|
|
2024-11-17 16:31:34 +01:00
|
|
|
export default TestEmailSettings;
|