Skip to main content

Simple Contact Form

A straightforward contact form with just the essentials: name, email, and a message field. No extras, no reset button, no captcha.

Download

Blueprint

type: managed-template
name: Simple Contact Form

emails:
  mail:
    subject: New Contact Form Submission
    sender: Website Contact Form

fields:
  name:
    type: text
    label: Name
    required: true
    username: true
    minlength: 2
    maxlength: 100

  email:
    type: email
    label: Email
    required: true
    replyto: true
    reply: true
    validate: email

  message:
    type: textarea
    label: Message
    required: true
    rows: 6
    minlength: 5
    maxlength: 2000

buttons:
  send:
    label: Send
  reset:
    show: false

Used Prompt

Create a very simple contact form template with just three fields: name, email, and message.