strapi/packages/strapi-provider-email-sendmail
Alexandre Bodin 7485de2fdf v3.2.3
2020-10-09 17:12:50 +02:00
..
2019-04-16 09:05:47 +02:00
2018-12-05 15:42:58 +01:00
2020-07-08 09:45:28 +02:00
2020-10-09 17:12:50 +02:00
2020-07-20 18:40:52 +02:00

strapi-provider-email-sendmail

Resources

Prerequisites

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

Installation

# using yarn
yarn add strapi-provider-email-sendmail

# using npm
npm install strapi-provider-email-sendmail --save

Configuration

Variable Type Description Required Default
provider string The name of the provider you use yes
providerOptions object Will be directly given to require('sendmail'). Please refer to sendmail doc. no {}
settings object Settings no {}
settings.defaultFrom string Default sender mail address no undefined
settings.defaultReplyTo string | array Default address or addresses the receiver is asked to reply to no undefined

Example

Path - config/plugins.js

module.exports = ({ env }) => ({
  // ...
  email: {
    provider: 'sendmail',
    settings: {
      defaultFrom: 'myemail@protonmail.com',
      defaultReplyTo: 'myemail@protonmail.com',
    },
  },
  // ...
});