This is what I would suggest as the best outcome in this instance.
See flow below as a quick example. I'll go into each action.

CSS is a Compose that has some styling for your Table.

<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
text-align: left;
padding: 15px 15px 15px 0;
}
</style>
HTML is another Compose that contains the actual HTML. Note that you would replace the values with your actual content from your dynamic fields. You would also need to change the image URL to your actual image.

<img src="https://www.w3schools.com/images/w3lynx_200.png" alt="" />
<h2><strong>TGG Logistics, LCC</strong></h2>
<h4><strong>New Employee Profile</strong></h4>
<hr>
<hr>
<table>
<tbody>
<tr>
<td>
<strong>Full Name:</strong> Joe Bloggs
</td>
<td>
<strong>Member's Email:</strong> Joe.bloggs@email.com
</td>
</tr>
<tr>
<td>
<strong>Shift Assigned:</strong> Day
</td>
<td>
<strong>Security Level:</strong> High
</td>
</tr>
<tr>
<td>
<strong>Supervisor's Name:</strong> Jane Doe
</td>
<td>
<strong>Supervisor's Email:</strong> Jane.Doe@email.com
</td>
</tr>
<tr>
<td>
<strong>Notification Email Sent:</strong> No
</td>
<td>
</td>
</tr>
</tbody>
</table>
Then you would just need to include the CSS and HTML in your output. In this example I'm using Send an email.

The email would look something like the screenshot below:
