$(function() {
    $('.mail-link').each((idx, e) => {
        const hrefBase64 = $(e).attr('href');
        const href = atob(hrefBase64);
        $(e).prop('href', href);
    })
})