diff --git a/src/app/profile/profile-structure/profile-structure.component.html b/src/app/profile/profile-structure/profile-structure.component.html
index 08865074074f162ddbc4e79b0ea2b9ed502760d2..af083fd2ef11c0e607b0e0a0c8c0b3bd67c0b912 100644
--- a/src/app/profile/profile-structure/profile-structure.component.html
+++ b/src/app/profile/profile-structure/profile-structure.component.html
@@ -92,7 +92,11 @@
       <div class="sectionContent infoSection">
         <p>{{ getAddress() }}</p>
         <p>{{ structure.contactPhone }}</p>
-        <a class="email" href="mailto:{{ structure.contactMail }}">
+        <a
+          *ngIf="structure.contactMail !== 'unknown@unknown.com'"
+          class="email"
+          href="mailto:{{ structure.contactMail }}"
+        >
           {{ structure.contactMail }}
         </a>
       </div>