Just Write Click

Technical writing with Continuous Integration and docs-as-code

  • JustWriteClick
  • Contact
  • Books by Anne Gentle
  • Introducing Docs Like Code
You are here: Home / social media / Email feedback mechanisms for online help

January 29, 2010 by annegentle

Email feedback mechanisms for online help

Email has become a universal conversation mechanism for business to business notification, customer to business communication, you name it. If you’re not doing so already, you can add email links so that readers can send emailed feedback to your technical documentation team. With advanced mailto markup you can automatically enter a subject line, indicate who the email will go to, as well as enter courtesy copies and blind courtesy copies to additional people. Your inbox should not be overwhelmed with feedback emails, but a link should give customers the feeling that their comments are collected and concerns addressed. This is conversational documentation at its simplest.

If you have a large helpsite, you may want to know where the click occurred. You can use Javascript to get the URL of the page or the title of the page and automatically embed that into the email that is sent. Here is sample Javascript code to put into either the top of each HTML file or in a separate file that the HTML file refers to. You can see this code in use at docs.imis.com, thanks to Melissa Burpo‘s implementation (she adapted code from webmasterworld.com for us).

<script language=”Javascript” type=”text/javascript”>
{
//variables
var subject = “Help feedback: ” +  document.title
var bodytext = “Topic: ” + document.URL + ” – ” + document.lastModified
var pagesubject = “Link to topic: ” +  document.title
var pagebodytext = “Topic: ” + document.URL

//output an email link
document.write(‘ | <a href=\”mailto:writers@company.com?subject=’ + pagesubject + ‘&body=’ + pagebodytext + ‘\” title=\”Email this page\”>’);
document.write(‘Email us</a> |’);
}
</script>

Some of the benefits of this approach is that email is simple and universally understood by customers. An email link offers a feedback mechanism without much overhead programming or implementation. But you may need to watch out for email collection robots that take your email addresses from the mailto code and use it for spam purposes. Also, you might not get the type of feedback you want, such as people only reporting typos, rather than offering substantial additional information.

I’ve got an article that will be published on the WritersUA site soon with additional conversation and community documentation examples, but this one is a great starting point if you have your help site on the Internet but haven’t started interaction with customers at all.

Related

Filed Under: social media Tagged With: communication, conversation, email, Javascript

More reading

Bubble graph showing sources of developer support data

I’ve been thinking a lot about developer support at Cisco recently, especially for the way the world works today with multiple cloud providers. This post is a re-publish of my talk from over five years ago, but the techniques and tools for listening and helping others are still true today. At Rackspace, we watched several […]

Cisco DevNet is our developer program for outreach, education, and tools for developers at Cisco. From the beginning, the team has had a vision for how to run a developer program. Customers are first, and the team implements what Cisco customers need for automation, configuration, and deployment of our various offerings. Plus, the DevNet team […]

I had a great talk with Ellis Pratt of Cherryleaf Technical Writing consulting last week. Here are the show notes, full of links to all the topics we covered. Podcasts are great fun to listen to and participate in, if a bit nerve-wracking to think on your feet and make sure you answer questions succinctly […]

At the beginning of this year, I worked hard to summarize my thoughts on API documentation, continuous publishing, and technical accuracy for developer documentation. The result is an article on InfoQ.com, edited by Deepak Nadig, who also was forward-thinking in having me speak to a few teams at Intuit about API documentation coupled with code. Always […]

Recently on Just Write Click

  • A Flight of Static Site Generators: Sampling the Best for Documentation
  • Try a GPT about “Docs Like Code” to ask questions
  • Discipline and Diplomacy: Docs in the Open
  • Let’s Find Out: When Do Static Site Generators Do Rendering?
  • GitHub for Managing Tech Docs

Just Write Click in your Inbox

Enter your email address to subscribe to Just Write Click and receive notifications of new posts by email.

Read More

  • Privacy Policy
  • About Anne Gentle, developer experience expert
  • Books by Anne Gentle
    • Conversation and Community
    • Docs Like Code, a Book for Developers and Tech Writers
  • Woman in Tech Speaker Profile
  • Contact

Books

  • JustWriteClick
  • Contact
  • Books by Anne Gentle
  • Introducing Docs Like Code

Copyright © 2025 · WordPress · Log in