Project

Profile

Help

Actions

Contact Forms with Planio » History » Revision 7

« Previous | Revision 7/62 (diff) | Next »
Thomas Carney, 10/25/2016 03:21 PM


Today we’re going to look at setting up a contact form that sends messages directly to Planio where they'll appear as issues in the Help Desk.

HTML Form

You can send contact form requests directly to Planio, as Planio will accept an unauthenticated POST request with application/x-www-form-urlencoded form data.

First, we’re going to build a simple form with an action attribute that submits the form to Planio via the POST HTTP method.

<form action="https://example.plan.io/track" method="POST">

Then, we’ll add input fields for a name, email, email subject, and the description:

  <label for="name">Your name:</label>
  <input name="name" id="name" type="text" />

  <label for="mail">Your email address:</label>
  <input name="mail" id="mail" type="email" />

  <label for="subject">Subject:</label>
  <input name="subject" id="subject" type="text" />

  <label for="description">Your message:</label>
  <textarea name="description" id="description"></textarea>

A Planio account can have multiple projects, so we need a way to assign this message to a particular project in Planio. Therefore, we’ll add a hidden input field with the value set to the name of the project you want to forward the issue:

  <input name="project" type="hidden" value="example-project" />

Then, we add the submit input field:

  <input type="submit" value="Submit request" />

Add a Honeypot Field

Forms are frequently the target of spambots that will send messages to any form they can find online. One strategy for dealing with spam bots is to add an additional input field to the form called a honeypot field. Then, you hide the form field using CSS. If that input field is filled out, which spambots usually do, then the message is discarded as spam - hence the name honeypot field.

Here’s the honeypot field along with some CSS:

<!-- CSS to hide honeypot field -->
<style media="screen">#url { display:none; }</style>
  <input name="url" id="url" type="text" />

So, pulling it all together, our form will look like this:

<!-- CSS to hide honeypot field -->
<style media="screen">#url { display:none; }</style>

<form action="https://example.plan.io/track" method="POST">

  <label for="name">Your name:</label>
  <input name="name" id="name" type="text" />

  <label for="mail">Your email address:</label>
  <input name="mail" id="mail" type="email" />

  <label for="subject">Subject:</label>
  <input name="subject" id="subject" type="text" />

  <label for="description">Your message:</label>
  <textarea name="description" id="description"></textarea>

  <input name="project" type="hidden" value="example-project" />
  <input name="url" id="url" type="text" />
  <input type="submit" value="Submit request" />

</form>

Example Contact Form Message as an Issue in Planio

When someone fills out this form, the message will show up in Planio as an issue as you can see here:

That’s just one of the examples of how you can use the Redmine API at Planio to streamline your processes. You’ll find more examples and documentation in our Redmine API documentation .

Updated by Thomas Carney over 7 years ago · 7 revisions

Also available in: PDF HTML ODT TXT