git-notifier
git-notifier copied to clipboard
Email Markup
Since this service rely on emails to notify users about github interactions I would suggest to add Schema.org email markup to notification emails. Github already does this as described in this post https://github.com/blog/1891-view-issue-pull-request-buttons-for-gmail
I think that a basic Go-To-Action would be enough, maybe something like
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"action": {
"@type": "ViewAction",
"url": "https://githubnotifier.io",
"name": "All notifications"
},
"description": "View full notification history"
}
</script>
Great idea, thanks! I will implement it as soon as I have some time :)