$(document).ready(function() {
  $('a[data-d]').click(function(e) {
    e.stopPropagation();
  }).each(function(e) {
    var e = atob($(this).attr('data-d'));
    $(this).text(e).attr('href', 'mailto:' + e);
  })
});

