Oh man, yes, that’s it.
<?php if(get_field('profile_mail', $employee->ID)): ?>
<div class="profile__mail">
<a href="mailto:<?php echo get_field('profile_mail', $employee->ID); ?>" class="profile__link">
<?php echo get_field('profile_mail', $employee->ID); ?>
</a>
</div>
<?php endif; ?>
Thanks a lot.