Hi Luc,
Table in the email body, a very long time ago you did this for a snapshot report, something similar to this would be perfect
# Format html report
$htmlReport = @"
<style type='text/css'>
.heading {
color:#3366FF;
font-size:12.0pt;
font-weight:700;
font-family:Verdana, sans-serif;
text-align:left;
vertical-align:middle;
height:20.0pt;
width:416pt
}
.bodytext {
color:##000000;
font-size:9.0pt;
font-weight:400;
font-family:Arial;
text-align:left;
vertical-align:middle;
height:30.0pt;
width:416pt
}
.colnames {
color:white;
font-size:8.0pt;
font-weight:700;
font-family:Tahoma, sans-serif;
text-align:center;
vertical-align:middle;
border:.5pt solid windowtext;
background:#99CC00;
}
.text {
color:windowtext;
font-size:8.0pt;
font-family:Arial;
text-align:center;
vertical-align:middle;
border:.5pt solid windowtext;
background:#CCCCFF;
}
</style>
<table border=0 cellpadding=0 cellspacing=0 width=555
style='border-collapse:collapse;table-layout:fixed;width:600pt'>
<tr style='height:15.0pt'>
<th colspan=5 height=40 width=555 class="heading">
Virtual.Offis vSphere Snapshot Report</th>
</style>
<table border=0 cellpadding=0 cellspacing=0 width=555
style='border-collapse:collapse;table-layout:fixed;width:600pt'>
<tr style='height:15.0pt'>
<th colspan=5 height=40 width=555 class="bodytext">
This is a reminder email of all the current snaphots.</th>
<tr>
<th class="colnames">VM</th>
<th class="colnames">VM Current State</th>
<th class="colnames">Name</th>
<th class="colnames">VM Snapshot State</th>
<th class="colnames">Date Created</th>
<th class="colnames">Snapshot Created By</th>
</tr>
"@
foreach($snapshot in $mySnaps){
$htmlReport = $htmlReport +
"<tr><td class='text'>" + $snapshot.vm.Name + "</td>" +
"<td class='text'>" + $snapshot.CurrentPowerState + "</td>" +
"<td class='text'>" + $snapshot.Name + "</td>" +
"<td class='text'>" + $snapshot.PowerState + "</td>" +
"<td class='text'>" + $snapshot.Created.ToString("dd/MM/yyyy HH:mm") + "</td>" +
"<td class='text'>" + $snapshot.Creator + "</td></tr>"