Add Microdata/JSON-LD markup to issue update emails.

XMLWordPrintable

      NOTE: This suggestion is for JIRA Cloud. Using JIRA Server? See the corresponding suggestion.

      Gmail now gives emails the ability to display a button at the end of the subject line which jumps directly to a URL without opening the email. Other issue tracking software has started using this to provide a "View Issue" button.

      Example from GitHub using Microdata:

      <div itemscope itemtype="http://schema.org/EmailMessage">
      <div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
        <link itemprop="url" href="https://github.com/user/repo/issues/12345"></link>
        <meta itemprop="name" content="View Issue"></meta>
      </div>
      <meta itemprop="description" content="View this Issue on GitHub"></meta>
      </div>
      
      

      Example from Monorail (Chromium and related projects) using JSON-LD:

      <script type="application/ld+json">
      {
        "@context": "http://schema.org",
        "@type": "EmailMessage",
        "potentialAction": {
          "@type": "ViewAction",
          "name": "View Issue",
          "url": "https://bugs.chromium.org/p/chromium/issues/detail?id=12345"
        },
        "description": ""
      }
      </script>
      
      

            Assignee:
            Unassigned
            Reporter:
            bardiharborow
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: