docpad-plugin-formmail
v2.0.2
Published
DocPad plugin to handle form submissions and mail out their content.
Downloads
1
Readme
FormMail Plugin for DocPad
A simple DocPad plugin which extends the server to handle posts to a configurable url and deliver it's contents to email addresses with a configurable smtp account. The typical usage scenario is adding a contact form to your DocPad site.
Install
npm install --save docpad-plugin-formmail
Usage
Setup
Configure the path to be intercepted on your server and the email details for sending out form data in the DocPad configuration file:
plugins:
formmail:
path: '/contact'
transport: {
service: 'Gmail',
auth: {
user: '[email protected]',
pass: 'password'
}
}
to: '[email protected]'
Where:
- the
path
property should match the POST action on your site's form. - the
to
property may be a list of destination email addresses for sending form submissions. - the
transport
property configures an SMTP transport instance using nodemailer
History
You can discover the history inside the History.md
file
License
Licensed under the incredibly permissive MIT License Copyright © 2013+ Sparks Creative Limited