JSFiddle - React, Tailwind, and code Playground
HTML
GNU nano 4.8 test.php
<table id="myTable">
<tr>
<td>
Nom et/ou matricule Utilisateur : </td> <td>Username</td>
</tr>
<tr>
<td>
Type d’intervention (INCIDENT ou DEMANDE) :</td><td> Incident</td>
</tr>
<tr>
<td>
Groupe d’assignation (assignement group) :</td><td> group name</td>
</tr>
<tr>
<td>
Affecté au technicien (Assigned to) : </td><td>assigner a</td>
</tr>
<tr>
<td>
Arbre de Cloture (Work Notes) :</td><td> arbre de cloture</td>
</tr>
<tr>
<td>
Explications de l’intervention (close notes) : </td><td> close notes</td>
</tr>
</table>
<button onclick="sendMail(); return false">Send</button>
JavaScript
function sendMail() {
var link = "mailto:[email protected]"
//+ "[email protected]"
+ "?subject=" + encodeURIComponent("Demande création de Ticket.")
+ "&body=" + encodeURIComponent(document.getElementById('myTable').outerHTML) ;
window.location.href = link;
// window.open('mailto:[email protected]?subject=subject&body=body');
}