@lucidcms/plugin-resend
v1.0.1
Published
The official Resend plugin for Lucid
Downloads
6
Readme
Lucid - Resend Plugin
The official Resend plugin for Lucid
This plugin registers the required email strategy config and uses Resend's REST API to send emails. Perfect for serverless environments like Cloudflare Workers.
Installation
npm install @lucidcms/plugin-resendUsage
import LucidResend from "@lucidcms/plugin-resend";
export default lucid.config({
// ...other config
plugins: [
LucidResend({
from: {
email: "[email protected]",
name: "Lucid CMS",
},
apiKey: process.env.RESEND_API_KEY,
}),
],
});