feat: support SMTP via nodemailer (#17)

This commit is contained in:
Henry
2025-06-04 12:33:24 +01:00
committed by GitHub
parent 3625d702e3
commit 84dd9a9b6d
16 changed files with 70 additions and 33 deletions

View File

@@ -0,0 +1,6 @@
import { apiKeyClient, magicLinkClient } from "better-auth/client/plugins";
import { createAuthClient } from "better-auth/react";
export const authClient = createAuthClient({
plugins: [magicLinkClient(), apiKeyClient()],
});