Simple Contact Form Email
A simple wordpress plugin which provides two forms that email out the responses.
by AlmaBridge · github.com/boz-ctrl/simple-contact-form-email
★ 0stars
0forks
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://github.com/boz-ctrl/simple-contact-form-email/archive/refs/heads/main.zipA lightweight WordPress plugin that adds two shortcodes:
- Contact form:
simple_contact_form - Feedback form:
simple_feedback_form
Submissions are sent using WordPress wp_mail().
Installation
- Copy the
simple-contact-form-emailfolder into your WordPresswp-content/plugins/directory. - In WordPress admin, go to Plugins and activate Simple Contact Form Email.
- Configure the recipient email in Settings > Simple Contact Form Email.
Shortcodes
Contact form fields:
- Name
- Company
- URL
- Email address
- Comments
Use:
[simple_contact_form]
Feedback form fields:
- Name
- Email address
- Comments
Use:
[simple_feedback_form]
Email Destination
By default, submissions go to the email set in:
- Settings > Simple Contact Form Email
You can override per form instance:
[simple_contact_form recipient="leads@example.com"]
[simple_feedback_form recipient="feedback@example.com"]
Notes
- Required fields: Name, Email address, Comments.
- Input is sanitized, nonce-protected, and includes basic anti-spam controls.
- Delivery depends on your WordPress email setup (SMTP/plugin/server config).