4.2.0 • Published 2 years ago

strapi-v4-provider-email-postmark v4.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

strapi-provider-email-postmark

Strapi email service for Postmark

Prerequisites

You will need to have the plugin strapi-plugin-email installed in you Strapi project.

Installation

# using yarn
yarn add strapi-v4-provider-email-postmark

# using npm
npm i strapi-v4-provider-email-postmark

Configuration

VariableTypeDescriptionRequiredDefault
providerstringThe name of the provider you useyes
providerOptionsobjectProvider optionsyes
providerOptions.apiKeystringPostmark API key. Please refer to postmark docs for moreyes
settingsobjectSettingsno{}
settings.defaultMessageStreamstringSend through a specific message stream. Please refer to postmark docs for morenoundefined
settings.defaultFromstringDefault sender mail addressnoundefined
settings.defaultTostringDefault receiver mail addressnoundefined
settings.defaultReplyTostringDefault address the receiver is asked to reply tonoundefined
settings.defaultVariablesobjectDefault set of variables to be used in template emailsno{}

Example

Path - config/plugins.js

module.exports = ({ env }) => ({
  // ...
  email: {
    config: {
      provider: "strapi-v4-provider-email-postmark",
      providerOptions: {
        apiKey: env("POSTMARK_API_KEY"),
      },
      settings: {
        defaultMessageStream: env("POSTMARK_STREAM"),
        defaultFrom: env("POSTMARK_FROM"),
        defaultTo: env("POSTMARK_TO"),
        defaultReplyTo: env("POSTMARK_REPLY_TO"),
        defaultVariables: {
          sentBy: "strapi",
        },
      },
    },
  },
  // ...
});

Usage

Call the send function on the email service, as you would for any strapi email service.

await strapi.plugins.email.services.email.send({
  to: "john.doe@ijs.to",
  text: "Hello John",
});

To send an email via a template, set templateId or templateAlias (and variables) to use the sendEmailWithTemplate method.

await strapi.plugins.email.services.email.send({
  to: "john.doe@ijs.to",
  templateAlias: "code-your-own",
  variables: {
    name: "John",
  },
});

Licence