Skip to content
On this page

Notification Providers

Notification providers allow you to send form submissions to a variety of different services. Currently, we support the following providers:

If you are interested in another provider feel free to open a PR or visit Custom Notification Provider

Email

This uses Strapi's built-in email plugin to send emails. If that is not setup properly this notification provider will not work.

Note that the from field is required and will not use the Strapi default from

{
  name: 'email',
  enabled: true,
  config: {
    subject: "Your Custom Subject", // Optional
    from: '[email protected]' // Required
  }
},

Twilio

{
  name: 'twilio',
  enabled: true,
  config: {
    accountSid: 'sid',
    authToken: 'token',
    from: '+18005555555',
  }
}