Live data from Hacker News

Canned Emails – a minimal site with prewritten emails

cannedemails.com

1–10 of 39 posts

Re: Canned Emails – a minimal site with prewritten emails

#6
Still I don't know how to avoid that the annoying Apple mail program opens all the mails and not Gmail's compose view within in the browser. Thus, I'd also agree to just get a text preview from the text and maybe not just one version but many curated from users as a next feature.

Re: Canned Emails – a minimal site with prewritten emails

#9
Today I contributed to the greater good of society:

  var output = "";
  $('h2 a').each(function(i) {
      output += "TITLE: " + $.trim(this.innerHTML) + "\n";
      var email = decodeURIComponent(this.href).slice(13).split("&subject=");
      output += "SUBJECT: " + email[1] + "\n";
      output += "BODY:\n" + email[0].replace(/\n( )+/g, "\n") + "\n\n\n\n";
      console.log(output);
  });
That being said I love the site :)
Post reply on HN