{"id":16413,"date":"2021-07-28T09:00:10","date_gmt":"2021-07-28T09:00:10","guid":{"rendered":"https:\/\/www.heartinternet.uk\/blog\/?p=16413"},"modified":"2021-07-28T09:00:10","modified_gmt":"2021-07-28T09:00:10","slug":"15-ways-to-hide-your-email-address","status":"publish","type":"post","link":"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/","title":{"rendered":"15 ways to hide your email address"},"content":{"rendered":"<p>We&#8217;ve all seen it. The customer wants their email address on their site. You add it, but then they have a new complaint &#8211; there&#8217;s too much spam.<\/p>\n<p>While spam filters can stop them from appearing in the inbox, it&#8217;s even better to prevent the email addresses from ever getting picked up by the spam bots. We have 15 different ways you can do this, with the pros and cons of each.<\/p>\n<h2>No protection<\/h2>\n<p>The most basic bit of HTML &#8211; your email address and a <code>mailto<\/code> tag.<\/p>\n<pre>&lt;p&gt;Please email us at \n&lt;a href=\"mailto:example1@heartinternet.uk\"&gt;\nexample1@heartinternet.uk&lt;\/a&gt;.&lt;\/p&gt;\n<\/pre>\n<p><strong>Pros:<\/strong> Everything can read it. People, browsers, screen readers, whatever.<\/p>\n<p><strong>Cons:<\/strong> Everything can read it. Which means it&#8217;ll be harvested within seconds.<\/p>\n<h2>Replacing with an image<\/h2>\n<p>Instead of having a text link, you can have an image with the email address in it.<\/p>\n<pre>&lt;p&gt;Please email us at \n&lt;img src=\"emailaddress.jpg\" width=\"150\" height=\"20\" alt=\"Email address\"&gt;&lt;\/p&gt;\n<\/pre>\n<p><strong>Pros:<\/strong> Spam bots aren&#8217;t going to pick it up as an email address. People can understand it and can type it into an email program, much like they would with a print campaign.<\/p>\n<p><strong>Cons:<\/strong> It&#8217;s not a link, so you can&#8217;t just click on it. Screen readers will read the alt text, but putting the email address in the alt text means that spam bots can pick it up. The image won&#8217;t scale the way text does, making it difficult to make responsive. People have to go to the effort of retyping the email address and entering it, which they not be bothered with. And now some spam bots can actually search images using OCR, and pick up the email address anyway.<\/p>\n<h2>Replacing with a PHP script<\/h2>\n<p>Rather than having an email address right there, have a link to a PHP script that then loads the <code>mailto<\/code> for the address.<\/p>\n<p>On the page:<\/p>\n<pre>&lt;p&gt;Please &lt;a href=\"mailhandler.php\"&gt;email us&lt;\/a&gt;.&lt;\/p&gt;\n<\/pre>\n<p>In the script:<\/p>\n<pre>&lt;?php\n\/* Mailhandler for the main email address *\/\nheader (\"Location: mailto:example3@heartinternet.uk\");\nexit();\n?&gt;\n<\/pre>\n<p><strong>Pros:<\/strong> Spam bots won&#8217;t see the email address. You can also have this across your site, and if you ever need to change the email address, it&#8217;s just changing one file.<\/p>\n<p><strong>Cons:<\/strong> You are calling a script each time someone clicks on that link. Spam bots won&#8217;t just crawl the site, but also search engines, so you might get a lot of hits on that one script.<\/p>\n<p align=\"center\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-16441\" src=\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/emailspam-robot1.jpg\" alt=\"A dull green grey toy robot\" width=\"650\" height=\"250\" \/><\/p>\n<h2>Replacing the special characters<\/h2>\n<p>This is the classic way to &#8220;disguise&#8221; your email address. Rather than having the <code>@<\/code> and the <code>.<\/code>, you just have words.<\/p>\n<pre>&lt;p&gt;Please email us at \n&lt;a href=\"mailto:example4ATheartinternetDOTuk\"&gt;\nexample4 AT heartinternet DOT uk&lt;\/a&gt;.&lt;\/p&gt;\n<\/pre>\n<p><strong>Pros:<\/strong> You can replace any parts with anything &#8211; make it <code>[AT]<\/code>, <code>*AT*<\/code>, whatever. And it&#8217;ll open up in the mail client just like it&#8217;s supposed to.<\/p>\n<p><strong>Cons:<\/strong> Some spam bots are able to automate the replacements, and can read an <code>AT<\/code> just as well as an <code>@<\/code>. Plus, it&#8217;s still on the user to change the email address, and they might get frustrated and not bother.<\/p>\n<h2>Hiding through basic HTML codes<\/h2>\n<p>This is another fairly easy way to &#8220;disguise&#8221; the email address. With your <a href=\"http:\/\/www.ascii.cl\/htmlcodes.htm\" target=\"_blank\" rel=\"noopener noreferrer\">a list of HTML codes<\/a>, you can replace the symbols with their HTML numbers.<\/p>\n<pre>&lt;p&gt;Please email us at \n&lt;a href=\"mailto:example5&amp;#64;heartinternet&amp;#46;uk\"&gt;\nexample5&amp;#64;heartinternet&amp;#46;uk&lt;\/a&gt;&lt;\/p&gt;\n<\/pre>\n<p><strong>Pros:<\/strong> Displays perfectly in the browser and loads up correct in the mail program.<\/p>\n<p><strong>Cons:<\/strong> Spam bots have already seen through this trick and can automate the replacements, unfortunately.<\/p>\n<h2>Fully hiding through HTML codes<\/h2>\n<p>Rather than just replacing the <code>@<\/code> with an HTML code, you can replace everything with HTML codes and URL codes, producing a giant chunk of numbers and characters. Use the list of HTML codes from above or grab <a href=\"http:\/\/wbwip.com\/wbw\/emailencoder.html\" target=\"_blank\" rel=\"noopener noreferrer\">Web Bay Web&#8217;s Email Encoder<\/a> to see it work.<\/p>\n<pre>&lt;p&gt;Please email us at \n&lt;a href=\"&amp;#109;&amp;#097;&amp;#105;&amp;#108;&amp;#116;&amp;#111;:&amp;#101;&amp;#120;&amp;#097;\n&amp;#109;&amp;#112;&amp;#108;&amp;#101;&amp;#055;&amp;#064;&amp;#104;&amp;#101;&amp;#097;&amp;#114;&amp;#116;\n&amp;#105;&amp;#110;&amp;#116;&amp;#101;&amp;#114;&amp;#110;&amp;#101;&amp;#116;&amp;#046;&amp;#117;&amp;#107;\"&gt;\n&amp;#101;&amp;#120;&amp;#097;&amp;#109;&amp;#112;&amp;#108;&amp;#101;&amp;#055;&amp;#064;&amp;#104;&amp;#101;\n&amp;#097;&amp;#114;&amp;#116;&amp;#105;&amp;#110;&amp;#116;&amp;#101;&amp;#114;&amp;#110;&amp;#101;&amp;#116;\n&amp;#046;&amp;#117;&amp;#107;&lt;\/a&gt;.&lt;\/p&gt;\n<\/pre>\n<p><strong>Pros:<\/strong> Even the <code>mailto<\/code> is converted, but it all displays correctly and loads up in the mail program.<\/p>\n<p><strong>Cons:<\/strong> Spam bots can still decipher these.<\/p>\n<p align=\"center\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-16440\" src=\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/emailspam-robot2.jpg\" alt=\"A bright red but slightly dirty toy robot\" width=\"650\" height=\"250\" \/><\/p>\n<h2>Adding in HTML comments<\/h2>\n<p>It looks right, and people can copy\/paste it right, but it&#8217;s hiding a secret in the code &#8211; plenty of HTML comment tags.<\/p>\n<pre>&lt;p&gt;Please email us at example\n&lt;!--\n--&gt;\n8@\n&lt;!--\n--&gt;\nheart\n&lt;!--\n--&gt;\ninternet\n&lt;!--\n--&gt;\n.uk\n&lt;!--\n--&gt;\n.&lt;\/p&gt;\n<\/pre>\n<p><strong>Pros:<\/strong> Displays properly in the browser, and people can copy\/paste it into their email program.<\/p>\n<p><strong>Cons:<\/strong> If a <code>mailto<\/code> is used with it, it can be recognised as an email address. Also, it can add a lot more weight to your page.<\/p>\n<h2>Adding in text for the user to remove<\/h2>\n<p>Instead of just putting in an <code>AT<\/code>, you put in an extra bit of text. You can also style up this text with CSS to make it clear that it needs to be removed.<\/p>\n<pre>&lt;p&gt;Please email us at \n&lt;a href=\"mailto:example9REMOVE@heartinternet.uk\"&gt;example9\n&lt;span style=\"color: #f00; text-decoration: line-through;\"&gt;REMOVE&lt;\/span&gt;\n@heartinternet.uk&lt;\/a&gt;.&lt;\/p&gt;\n<\/pre>\n<p><strong>Pros:<\/strong> You can turn the inaccurate email address (the example9REMOVE) into a honeypot, picking up spambots and popping them on a blocklist.<\/p>\n<p><strong>Cons:<\/strong> The CSS may not load correctly on some browsers. People will need to remember to remove parts of the email address in order to have the correct address.<\/p>\n<h2>Adding in text that doesn&#8217;t appear on the page<\/h2>\n<p>With CSS, you can also <code>display:none<\/code> the text, meaning that it appears in the code, but it won&#8217;t appear on the page. You can use this for single words, or fill up the email with random text.<\/p>\n<pre>&lt;p&gt;Please email us at example10\n&lt;span style=\"display: none;\"&gt;REMOVE&lt;\/span&gt;\n@heartinternet.uk.&lt;\/p&gt;\n<\/pre>\n<p><strong>Pros:<\/strong> Spam bots will pick up an inaccurate email address, which you can turn into a honeypot, but to the average user, everything looks normal.<\/p>\n<p><strong>Cons:<\/strong> Users will have to copy\/paste the email address in. Some browsers might not pick up the CSS.<\/p>\n<p align=\"center\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-16437\" src=\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/emailspam-robot3.jpg\" alt=\"A steel grey toy robot\" width=\"650\" height=\"250\" \/><\/p>\n<h2>Building the email address in JavaScript<\/h2>\n<p>JavaScript lets you add together the email from all the bits and pieces, making it hidden from spam bots, but easy to click on.<\/p>\n<pre>&lt;script language=\"JavaScript\" type=\"text\/javascript\"&gt;\nvar part1 = \"example11\";\nvar part2 = Math.pow(2,6);\nvar part3 = String.fromCharCode(part2);\nvar part4 = \"heartinternet.uk\";\nvar part5 = part1 + String.fromCharCode(part2) + part4;\ndocument.write(\"Please email us at &lt;a href=\" + \"mai\" + \"lto\" + \":\" \n+ part5 + \"&gt;\" + part1 + part3 + part4 + \"&lt;\/a&gt;.\");\n&lt;\/script&gt;\n<\/pre>\n<p><strong>Pros:<\/strong> Completely hidden from spam bots, because they won&#8217;t trigger the click event.<\/p>\n<p><strong>Cons:<\/strong> If JavaScript is disabled, the entire sentence will not appear.<\/p>\n<h2>Use a CAPTCHA<\/h2>\n<p>Want to keep your email hidden from robots? Ask people if they&#8217;re robots. <a href=\"https:\/\/www.google.com\/recaptcha\/intro\/invisible.html\" target=\"_blank\" rel=\"noopener noreferrer\">Google&#8217;s reCAPTCHA service<\/a> is a great option, and, in fact, is often invisible to people. Sign up for it, put the details in, and you have a way to stop bots from getting your email.<\/p>\n<pre>&lt;p&gt;Please &lt;a href=\"GOOGLE LINK\" \nonclick=\"window.open('GOOGLE LINK', '', 'toolbar=0, scrollbars=0, \nlocation=0, statusbar=0, menubar=0, resizeable=0, width=500, \nheight=300'); return false;\"&gt;email us&lt;\/a&gt;\n<\/pre>\n<p><strong>Pros:<\/strong> The email address is completely hidden from spam bots, and you can redesign the CAPTCHA to match your design. Plus, reCAPTCHA provides a service for major crowdsourcing projects, such as <a href=\"http:\/\/www.gutenberg.org\/\" target=\"_blank\" rel=\"noopener noreferrer\">Project Gutenberg<\/a>.<\/p>\n<p><strong>Cons:<\/strong> Visitors might get annoyed with the CAPTCHA, and not bother. Accessibility is also not a given.<\/p>\n<h2>Loading part of the address via CSS<\/h2>\n<p>Using the <code>::before<\/code> and <code>::after<\/code> selectors in your CSS, as well as <code>display: none<\/code>, you can engineer an email address that looks right to users while giving spam bots the wrong address.<\/p>\n<pre>&lt;style type=\"text\/css\"&gt;\np#emaildomain::after {\ncontent: \"13\\40heartinternet.uk\";\n}\nspan#emailname::before {\ncontent: \"example\";\n}\nspan#botblocker {\ndisplay: none;\n}\n&lt;\/style&gt;\n&lt;p id=\"emaildomain\"&gt;Please email us at \n&lt;span id=\"emailname\"&gt;\n&lt;span id=\"botblocker\"&gt;botblocker@heartinternet.uk&lt;\/span&gt;\n&lt;\/span&gt;.&lt;\/p&gt;\n<\/pre>\n<p>Remember to use <code>\\40<\/code> instead of <code>@<\/code> so the CSS picks it up properly.<\/p>\n<p><strong>Pros:<\/strong> Spam bots will only read what&#8217;s in the HTML, not what&#8217;s in the CSS. Because of this, you can set up a honey trap and get bots blocked fairly quickly.<\/p>\n<p><strong>Cons:<\/strong> The text will be read by humans, but might have issues with some browsers. Plus, they&#8217;ll have to copy\/paste the email address.<\/p>\n<p align=\"center\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-16433\" src=\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/emailspam-robot4.jpg\" alt=\"A bright red and yellow toy robot\" width=\"650\" height=\"250\" \/><\/p>\n<h2>Reversing the character squence with CSS<\/h2>\n<p>With the <code>unicode-bidi<\/code> and <code>direction<\/code> selectors in CSS, you can actually produce an email address that looks right on the screen but is nonsensical in the code.<\/p>\n<pre>&lt;p&gt;Please email us at \n&lt;span style=\"unicode-bidi:bidi-override; direction: rtl;\"&gt;\nku.tenretnitraeh@41elpmaxe&lt;\/span&gt;.&lt;\/p&gt;\n<\/pre>\n<p><strong>Pros:<\/strong> Spam bots will see the backwards-facing email address, which will naturally go nowhere.<\/p>\n<p><strong>Cons:<\/strong> You have to switch the email address around, and some spam bots will recognise the pattern and harvest the email address anyway.<\/p>\n<h2>Encrypting the email address using ROT13<\/h2>\n<p>Use JavaScript to build a <a href=\"https:\/\/en.wikipedia.org\/wiki\/ROT13\" target=\"_blank\" rel=\"noopener noreferrer\">ROT13<\/a> substitution cipher that hides the email address. Use a <a href=\"http:\/\/www.rot-n.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">ROT translator<\/a> your email address&#8217;s secret code.<\/p>\n<pre>&lt;script language=\"JavaScript\" type=\"text\/JavaScript\"&gt;\n\/* Encryption function *\/\nfunction encRot13(mailString) {\nvar mapArray = [];\nvar elements = \"abcdefghijklmnopqrstuvwxyz\";\nvar outp = \"\";\nfor (i = 0; i &lt; elements.length; i++) {\nvar x = elements.charAt(i);\nvar y = elements.charAt((i + 13) % 26);\nmapArray[x] = y;\nmapArray[x.toUpperCase()] = y.toUpperCase();\n}\nfor (i = 0; i &lt; mailString.length; i++) {\nvar c = mailString.charAt(i)\noutp += (c &gt;= 'A' &amp;&amp; c &lt;= 'z' || c &gt;= 'a' &amp;&amp; c &lt;= '\\' ? mapArray [c] : c)\n}\nreturn outp;\n}\n\/* Concatenating and redirection mailstring function *\/\nfunction decryptMail(encString) {\nvar linkString = \"mailto:\" ;\nvar addressString = encRot13(encString);\nlinkString += addressString;\ndocument.location.href = linkString;\n}\n&lt;\/script&gt;\n&lt;p&gt;Please \n&lt;a href=\"JavaScript:decryptMail('rknzcyr15@urnegvagrearg.hx');\"&gt;\nemail us&lt;\/a&gt;.&lt;\/p&gt;\n<\/pre>\n<p><strong>Pros:<\/strong> Spam bots will see the incorrect email address first and use that. There&#8217;s also no obvious <code>mailto:<\/code> link, which means they may bypass it.<\/p>\n<p><strong>Cons:<\/strong> Requires JavaScript to be turned on, and ROT13 is fairly easy to decipher &#8211; it can be easily picked up by spam bots. By adding ROT5 as well, you can encrypt the numbers as well.<\/p>\n<h2>Using a contact form<\/h2>\n<p>But when it comes to the endless struggle against spam, a plain old contact form is your best bet. Along with hiding any email addresses, you can easily put in CAPTCHAs to stop spam bots from exploiting the form.<\/p>\n<p>There are a wide range of contact form scripts available online, as well as plug-ins for content management systems such as WordPress.<\/p>\n<p>With a contact form, it also helps to add in <code>&lt;label&gt;<\/code> tags &#8211; this makes it easier for text-to-speech browsers and other systems to easily identify which field goes with which <code>&lt;input&gt;<\/code> tag.<\/p>\n<p>You can find out more about building your own contact form on <a href=\"https:\/\/www.w3.org\/wiki\/HTML_forms_-_the_basics\" target=\"_blank\" rel=\"noopener noreferrer\">W3&#8217;s HTML Forms: The Basics<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>While filters can stop spam getting through to your inbox, it&#8217;s better to prevent the bots from picking up the email address in the first place. Here are 15 ways you can stop spam from finding that address.<\/p>\n","protected":false},"author":2,"featured_media":16443,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[24],"tags":[],"class_list":{"0":"post-16413","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-web-design"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>15 ways to hide your email address - Heart Internet<\/title>\n<meta name=\"description\" content=\"While filters can stop spam getting through, it&#039;s better to prevent the email address from getting picked up by bots in the first place.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"15 ways to hide your email address - Heart Internet\" \/>\n<meta property=\"og:description\" content=\"While filters can stop spam getting through, it&#039;s better to prevent the email address from getting picked up by bots in the first place.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/\" \/>\n<meta property=\"og:site_name\" content=\"Heart Internet\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/heartinternet\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-28T09:00:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/04\/emailspam-background.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1265\" \/>\n\t<meta property=\"og:image:height\" content=\"500\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Eliot Chambers-Ostler\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@heartinternet\" \/>\n<meta name=\"twitter:site\" content=\"@heartinternet\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Eliot Chambers-Ostler\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/\"},\"author\":{\"name\":\"Eliot Chambers-Ostler\",\"@id\":\"https:\/\/heartblog.victory.digital\/#\/schema\/person\/58ed7f27cc0f3ab6e69135742a5eee28\"},\"headline\":\"15 ways to hide your email address\",\"datePublished\":\"2021-07-28T09:00:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/\"},\"wordCount\":1359,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/heartblog.victory.digital\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/04\/emailspam-background.jpg\",\"articleSection\":[\"Web Design\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/\",\"url\":\"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/\",\"name\":\"15 ways to hide your email address - Heart Internet\",\"isPartOf\":{\"@id\":\"https:\/\/heartblog.victory.digital\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/04\/emailspam-background.jpg\",\"datePublished\":\"2021-07-28T09:00:10+00:00\",\"description\":\"While filters can stop spam getting through, it's better to prevent the email address from getting picked up by bots in the first place.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/#primaryimage\",\"url\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/04\/emailspam-background.jpg\",\"contentUrl\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/04\/emailspam-background.jpg\",\"width\":1265,\"height\":500},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.heartinternet.uk\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"15 ways to hide your email address\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/heartblog.victory.digital\/#website\",\"url\":\"https:\/\/heartblog.victory.digital\/\",\"name\":\"Heart Internet\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/heartblog.victory.digital\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/heartblog.victory.digital\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/heartblog.victory.digital\/#organization\",\"name\":\"Heart Internet\",\"url\":\"https:\/\/heartblog.victory.digital\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/heartblog.victory.digital\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/02\/HeartInternet_Logo_Colour.webp\",\"contentUrl\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/02\/HeartInternet_Logo_Colour.webp\",\"width\":992,\"height\":252,\"caption\":\"Heart Internet\"},\"image\":{\"@id\":\"https:\/\/heartblog.victory.digital\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/heartinternet\/\",\"https:\/\/x.com\/heartinternet\",\"https:\/\/www.linkedin.com\/company\/heart-internet-ltd\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/heartblog.victory.digital\/#\/schema\/person\/58ed7f27cc0f3ab6e69135742a5eee28\",\"name\":\"Eliot Chambers-Ostler\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/heartblog.victory.digital\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/08\/cropped-Eliot-96x96.jpg\",\"contentUrl\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/08\/cropped-Eliot-96x96.jpg\",\"caption\":\"Eliot Chambers-Ostler\"},\"url\":\"https:\/\/www.heartinternet.uk\/blog\/author\/eliot-chambers-ostler\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"15 ways to hide your email address - Heart Internet","description":"While filters can stop spam getting through, it's better to prevent the email address from getting picked up by bots in the first place.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/","og_locale":"en_GB","og_type":"article","og_title":"15 ways to hide your email address - Heart Internet","og_description":"While filters can stop spam getting through, it's better to prevent the email address from getting picked up by bots in the first place.","og_url":"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/","og_site_name":"Heart Internet","article_publisher":"https:\/\/www.facebook.com\/heartinternet\/","article_published_time":"2021-07-28T09:00:10+00:00","og_image":[{"width":1265,"height":500,"url":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/04\/emailspam-background.jpg","type":"image\/jpeg"}],"author":"Eliot Chambers-Ostler","twitter_card":"summary_large_image","twitter_creator":"@heartinternet","twitter_site":"@heartinternet","twitter_misc":{"Written by":"Eliot Chambers-Ostler","Estimated reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/#article","isPartOf":{"@id":"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/"},"author":{"name":"Eliot Chambers-Ostler","@id":"https:\/\/heartblog.victory.digital\/#\/schema\/person\/58ed7f27cc0f3ab6e69135742a5eee28"},"headline":"15 ways to hide your email address","datePublished":"2021-07-28T09:00:10+00:00","mainEntityOfPage":{"@id":"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/"},"wordCount":1359,"commentCount":0,"publisher":{"@id":"https:\/\/heartblog.victory.digital\/#organization"},"image":{"@id":"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/#primaryimage"},"thumbnailUrl":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/04\/emailspam-background.jpg","articleSection":["Web Design"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/","url":"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/","name":"15 ways to hide your email address - Heart Internet","isPartOf":{"@id":"https:\/\/heartblog.victory.digital\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/#primaryimage"},"image":{"@id":"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/#primaryimage"},"thumbnailUrl":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/04\/emailspam-background.jpg","datePublished":"2021-07-28T09:00:10+00:00","description":"While filters can stop spam getting through, it's better to prevent the email address from getting picked up by bots in the first place.","breadcrumb":{"@id":"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/#primaryimage","url":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/04\/emailspam-background.jpg","contentUrl":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/04\/emailspam-background.jpg","width":1265,"height":500},{"@type":"BreadcrumbList","@id":"https:\/\/www.heartinternet.uk\/blog\/15-ways-to-hide-your-email-address\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.heartinternet.uk\/blog\/"},{"@type":"ListItem","position":2,"name":"15 ways to hide your email address"}]},{"@type":"WebSite","@id":"https:\/\/heartblog.victory.digital\/#website","url":"https:\/\/heartblog.victory.digital\/","name":"Heart Internet","description":"","publisher":{"@id":"https:\/\/heartblog.victory.digital\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/heartblog.victory.digital\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/heartblog.victory.digital\/#organization","name":"Heart Internet","url":"https:\/\/heartblog.victory.digital\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/heartblog.victory.digital\/#\/schema\/logo\/image\/","url":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/02\/HeartInternet_Logo_Colour.webp","contentUrl":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/02\/HeartInternet_Logo_Colour.webp","width":992,"height":252,"caption":"Heart Internet"},"image":{"@id":"https:\/\/heartblog.victory.digital\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/heartinternet\/","https:\/\/x.com\/heartinternet","https:\/\/www.linkedin.com\/company\/heart-internet-ltd"]},{"@type":"Person","@id":"https:\/\/heartblog.victory.digital\/#\/schema\/person\/58ed7f27cc0f3ab6e69135742a5eee28","name":"Eliot Chambers-Ostler","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/heartblog.victory.digital\/#\/schema\/person\/image\/","url":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/08\/cropped-Eliot-96x96.jpg","contentUrl":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/08\/cropped-Eliot-96x96.jpg","caption":"Eliot Chambers-Ostler"},"url":"https:\/\/www.heartinternet.uk\/blog\/author\/eliot-chambers-ostler\/"}]}},"_links":{"self":[{"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/posts\/16413","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/comments?post=16413"}],"version-history":[{"count":0,"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/posts\/16413\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/media\/16443"}],"wp:attachment":[{"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/media?parent=16413"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/categories?post=16413"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/tags?post=16413"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}