lapietopie: HTML Body in Mail

Beitrag lesen

Hallo, ich möchte eine Mail automatisch per Button versenden mit dem Inhalt des kompletten Body´s von HTML. Mein Versuch:
-----------------
<head>
...
<script...>
var link = "mailto:lapietopie@test.de?subject=Test%20test&body="+ document.getElementById('testbody').innerHTML + "";

location.href = link;
</script>
</head>

<body id="testbody">
...
</body>
----------------

Ich bekomme den Inhalt des Body´s (z.B. eine Tabelle) nicht in der Mail abgebildet. Hat jemand eine Idee (ohne php)?

LG Jochen