@all2cf/strapi-provider-email-send
v0.1.0
Published
Strapi email provider for customer-owned CFsend Runtimes
Readme
All2CF Send provider for Strapi 5
Configure config/plugins.js with the provider package and pass
runtimeUrl/apiKey, preferably through ALL2CF_SEND_URL and
ALL2CF_SEND_KEY. The provider supports HTML/text, CC/BCC/Reply-To, custom
headers and in-memory attachments.
npm install @all2cf/strapi-provider-email-sendexport default ({ env }) => ({
email: {
config: {
provider: "@all2cf/strapi-provider-email-send",
providerOptions: {
runtimeUrl: env("ALL2CF_SEND_URL"),
apiKey: env("ALL2CF_SEND_KEY"),
},
settings: { defaultFrom: "[email protected]" },
},
},
});