Contact Form
This plugin makes it easy to add a contact form to your app.
This plugin makes it easy to add a contact form to your app.
This plugin makes it easy to add a contact form. It can be easily customized via factor-settings.js and/or you can use its filters to connect new signups with external services.
Just add to your application dependencies:
npm add @factor/plugin-contact-form
The customization system for this plugin is based on the standard factor-settings.js
API that is provided by Factor.
To start customization, add a key
of contactForm
to the settings file in your app. All you need to do is add your settings in the place of the default ones.
To customize defaults, you can
// app factor-settings.js
export default {
contactForm: {
submit: {
text: "my text",
},
},
}
Run npx factor setup
for a question based CLI to help you configure this plugin's options.