docpad-plugin-formmail
v2.0.2
Published
DocPad plugin to handle form submissions and mail out their content.
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-formmailUsage
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
pathproperty should match the POST action on your site's form. - the
toproperty may be a list of destination email addresses for sending form submissions. - the
transportproperty 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
