Jim Nielsen’s Blog
Preferences
Theme: This feature requires JavaScript as well as the default site fidelity (see below).
Fidelity:

Controls the level of style and functionality of the site, a lower fidelity meaning less bandwidth, battery, and CPU usage. Learn more.

Email Replies in Feeds

Robin and Jonnie have both written about adding “reply links” at the bottom of each post in their feeds. I think it’s a neat idea. Honestly, I don’t think I have the kind of following where people are going to actually email me; that said, I would love to hear the thoughts of anyone who subscribes to my feed. Occasionally I do get feedback on posts via email, twitter DMs, etc., and it has always been good. Hopefully this increases that kind of correspondence.

Doing this was straightforward. My blog is based on a static site generator (metalsmith to be specific). In my JSON/XML feeds, I added an extra template that outputs a divider and a mailto link.

<hr />
<p>
  <a href="mailto:my_email@gmail.com?subject=RSS Reply&body=Source article ${postLink}">
    Reply via email
  </a>
</p>

You may have noticed I injected info into the subject line and body of the email to help me understand the context of any incoming emails. I figured it’d be nice to have a reference to the post that triggered the reply. This code saves the sender the work of having to do it. That said, they’re always free to edit the email as they please.

These links render in both my RSS and JSON feeds.