Skip to content

Commit

Permalink
Update shelf.config.ts.md
Browse files Browse the repository at this point in the history
  • Loading branch information
DonKoko authored Mar 20, 2024
1 parent 79e251a commit c3f8083
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/shelf.config.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ import { ENABLE_PREMIUM_FEATURES } from "~/utils";
import { Config } from "./types";

export const config: Config = {
sendOnboardingEmail: true,
sendOnboardingEmail: SEND_ONBOARDING_EMAIL || false,
enablePremiumFeatures: ENABLE_PREMIUM_FEATURES || false,
};
```

## sendOnboardingEmail

This flag allows you to choose whether the onboarding email will be sent to new users. Email is being sent within the action of `routes/_welcome+/onboarding.tsx`
Default value is false. If you want to override it you can use the env variable `SEND_ONBOARDING_EMAIL`

```ts
//remix.config.ts
Expand Down

0 comments on commit c3f8083

Please sign in to comment.