diff --git a/src/routes/api/contact.server.ts b/src/routes/api/contact.server.ts index 87a171e..23f9a0d 100644 --- a/src/routes/api/contact.server.ts +++ b/src/routes/api/contact.server.ts @@ -3,6 +3,10 @@ import type { HydrogenRequest } from "@shopify/hydrogen"; const env: Record = typeof Oxygen !== "undefined" && "env" in Oxygen ? Oxygen.env : import.meta.env; +console.log({ + accessKeyId: env.SES_ACCESS_KEY_ID, + secretAccessKey: env.SES_ACCESS_KEY, +}); const client = new SESClient({ credentials: { accessKeyId: env.SES_ACCESS_KEY_ID,