diff --git a/apps/web/src/app/(dashboard)/dev-settings/smtp/loading.tsx b/apps/web/src/app/(dashboard)/dev-settings/smtp/loading.tsx new file mode 100644 index 0000000..72e211c --- /dev/null +++ b/apps/web/src/app/(dashboard)/dev-settings/smtp/loading.tsx @@ -0,0 +1,40 @@ +import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@usesend/ui/src/card"; + export default function Loading() { + return ( + + + SMTP + + Send emails using SMTP instead of the REST API. See documentation for + more information. + + + +
+
+ Host: +
+
+
+ +
+

+ For encrypted/TLS connections use{" "} + 2465,{" "} + 587 or{" "} + 2587 +

+
+
+ +
+
+
+ +
+
+
+ + + ); + } \ No newline at end of file