mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
Working on settings. Adding .env value take in count when they are present in order to prefill the Settings on startup. Adding the SendEMail Feature and the form in settings.
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
import {
|
||||
Text,
|
||||
} from "@react-email/components";
|
||||
import * as React from "react";
|
||||
import EmailLayout from "./EmailLayout";
|
||||
|
||||
|
||||
export const TestEmailSettings = () => {
|
||||
return (
|
||||
<EmailLayout
|
||||
preview="Test Email"
|
||||
>
|
||||
<Text
|
||||
className="text-base font-light leading-8 text-green-800 "
|
||||
>
|
||||
Hi, this is a test email for settings and alerts !
|
||||
</Text>
|
||||
<Text
|
||||
className="text-base font-light leading-8 text-green-800 ">
|
||||
Soluce Technologies | Portabase
|
||||
</Text>
|
||||
</EmailLayout>
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
|
||||
export default TestEmailSettings;
|
||||
Reference in New Issue
Block a user