1.0.0 • Published 1 year ago

strapi-provider-email-resend-strapi v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

strapi-provider-email-resend

A email provider for Strapi for Resend https://resend.com/

Installation

In the root directory of your project, run:

npm i strapi-provider-email-resend-strapi

Configuration

In your config/plugins.js, set the following:

module.exports = ({ env }) => ({
  ...
  email: {
    config: {
      provider: 'strapi-provider-email-resend-strapi',
      providerOptions: {
        apiKey: env('RESEND_API_KEY'), // Required
      },
      settings: {
        defaultFrom: 'me@example.com', // env('RESEND_DEFAULT_FROM')
        defaultReplyTo: 'me@example.com', // env('RESEND_DEFAULT_FROM')
      },
    }
  },
});
1.0.0

1 year ago

0.1.2

1 year ago