diff --git a/server/emails/sendEmail.ts b/server/emails/sendEmail.ts index 4c5586f1..9b99d18e 100644 --- a/server/emails/sendEmail.ts +++ b/server/emails/sendEmail.ts @@ -25,7 +25,7 @@ export async function sendEmail( const emailHtml = await render(template); - const appName = "Fossorial - Pangolin"; + const appName = "Pangolin"; await emailClient.sendMail({ from: { diff --git a/server/emails/templates/components/ButtonLink.tsx b/server/emails/templates/components/ButtonLink.tsx index 9086bd47..618fed15 100644 --- a/server/emails/templates/components/ButtonLink.tsx +++ b/server/emails/templates/components/ButtonLink.tsx @@ -12,7 +12,7 @@ export default function ButtonLink({ return ( - {children} -

- For any questions or support, please contact us at: -
- support@fossorial.io -

-

- © {new Date().getFullYear()} Fossorial, Inc. All rights - reserved. -

- + <> + {build === "saas" && ( +
+ {children} +

+ For any questions or support, please contact us at: +
+ support@fossorial.io +

+

+ © {new Date().getFullYear()} Fossorial, Inc. All + rights reserved. +

+
+ )} + ); }