No contact email address is visible on the site, violating GDPR and regulatory requirements.
By Seoxpert Editorial · Published
Displaying a contact email is required by GDPR and other regulations, ensuring users can reach the data controller. Lack of visible contact info can erode user trust and expose your site to legal risks. Search engines may also consider accessibility and compliance signals for ranking.
Failure to provide a contact email can result in regulatory penalties and reduced user trust.
An automated crawler scans pages for visible email addresses or contact information in common locations like the footer or contact page.
Missing contact email (problem)
<!-- No email address present anywhere on the site -->Visible contact email in footer (fix)
<footer>
<p>Contact us: <a href="mailto:privacy@example.com">privacy@example.com</a></p>
</footer>Contact form with disclosed email in privacy policy (fix)
<!-- Contact form on /contact page -->
<form action="/send-message" method="post">
<input type="email" name="user_email" required>
<textarea name="message" required></textarea>
<button type="submit">Send</button>
</form>
<!-- In privacy policy -->
<p>For privacy inquiries, contact: privacy@example.com</p>No. You must also disclose a controller email address, typically in your privacy policy, even if you use a contact form.
You can use a contact form to reduce spam, but you still need to display an email address for regulatory compliance.
Common locations are the site footer, a dedicated /contact page, and your privacy policy.
While not required, using a mailto link improves accessibility for users.
Run a scan to see if No Contact Email Address Visible on the Site affects your pages.
Scan my website →