const updateEmailLinks = () => { const emailLinks = document.querySelectorAll('a[href^="mailto:"], button'); emailLinks.forEach(link => { if (link.href.includes('mailto:') || link.textContent.includes('Écrivez-nous') || link.textContent.includes('Contactez-nous')) { link.href = 'mailto:info@ellev.ch'; } }); }; updateEmailLinks();