Project

Profile

Help

Actions

Contact Forms with Planio » History » Revision 41

« Previous | Revision 41/62 (diff) | Next »
Jan Schulz-Hofen, 11/19/2016 02:54 PM


Set Up a Contact Form on your own Website with CRM & Helpdesk

In this guide, we will look at setting up a contact form on your own website that sends your customer's messages directly to Planio where they'll appear as issues in Planio's CRM & Helpdesk.

Benefits

  • Reply to website inquiries directly from Planio using the CRM & Helpdesk App.
  • Don't let inquiries slip through the cracks in your overloaded email inbox.
  • Work as a team on customer support.
  • Become more efficient by using auto-replies and CRM templates.
  • No need for server-side scripting to handle the contact form submissions.

HTML Form

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

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

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

You will have to replace example.plan.io with your own Planio domain.

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 identifier of the project you want to forward the issue:

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

Then, we add a submit button:

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

Add a Honeypot Field

Forms are frequently the target of spambots that 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:

<style type="text/css">#url { display:none; }</style>
<input name="url" id="url" type="text" />

Using a honeypot field is optional but we highly recommend it to avoid spam.

Submit the form using Ajax

After receiving your contact form data, Planio will redirect back to the page it came from. This works nicely in many cases, but you might want to display a short "Thank you" message to your users once the form is submitted instead and make the form appear a little more snappy.

Here's one way to achieve that with an Ajax call using jQuery:

<p class="thanks" style="display:none;">Thank you for getting in touch.</p>

<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script type="text/javascript">
$('form').submit(function() {
  $.ajax({ 
    url: $(this).attr('action'), 
    dataType: 'jsonp', 
    data: $(this).serialize() 
  });
  $('form').hide(); $('.thanks').show();
  return false;
});
</script>

A Practical Example

So, pulling it all together, a minimal HTML page including our form would look like this:

<!doctype html>
<html lang="en">

  <head>
    <title>Contact us!</title>
    <style type="text/css">#url { display:none; }</style>
  </head>

  <body>
    <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>
  </body>

</html>

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


A contact form message appears as issue in Planio

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, including how to add your own custom fields to your contact forms, in our Redmine API documentation.

Updated by Jan Schulz-Hofen over 7 years ago · 41 revisions

Also available in: PDF HTML ODT TXT