Hi Long, thank you for your reply. It didn't work by making it html - but I got it working with:
add_shortcode( 'make_a_mailto_email_link', function() {
$author_id = get_post_field( 'post_author', get_queried_object_id() );
$user_email = rwmb_meta( 'user_email', ['object_type' => 'user'], $author_id );
$output = $user_email;
return $output;
} );
And adding "mailto:" in the advanced 'before' field in the dynamic options in elementor.
Thank you for your help though! Really happy this ones done!