How do you send an encrypted email in gmail?
It is recommended that when you sent an email in gmail with personal information then you should do via an encrypted email. 1 to 1 IT Coaching Australia explains how you do it in Gmail.
const collections = [ {categoryLink: '/blog/category/', canonicalLink: 'https://your-domain/blog/'} ] collections.forEach(({categoryLink, canonicalLink})=> { if(window.location.pathname.includes(categoryLink)) { const squarespaceSetCanonical = document.querySelector("link[rel='canonical']") if(squarespaceSetCanonical) { squarespaceSetCanonical.remove() } const linkTag = document.createElement('link'); linkTag.setAttribute('rel', 'canonical'); linkTag.href = canonicalLink document.head.appendChild(linkTag) } })
It is recommended that when you sent an email in gmail with personal information then you should do via an encrypted email. 1 to 1 IT Coaching Australia explains how you do it in Gmail.