@frogbotai/email-resend
v0.22.0
Published
Resend email adapter for FrogBot.
Readme
@frogbotai/email-resend
Resend email adapter for FrogBot.
Installation
pnpm add @frogbotai/email-resendUsage
import { buildConfig } from 'frogbot';
import { resendAdapter } from '@frogbotai/email-resend';
export default buildConfig({
email: resendAdapter({
apiKey: process.env.RESEND_API_KEY,
defaultFromAddress: '[email protected]',
defaultFromName: 'My App',
}),
// ...rest of config
});