I want to include a timestamp in the subject of a mail. I already found out that I have to use javascript for this, I also found a way to include it, but I have trouble displaying the mail adress on the webpage (nothing is displayed). Below is the code I wrote until now. I think it has to do something with the way I included html in my javascript, but I can't find my error.
<script>
Document.write('<a href="mailto:[email protected]?subject=This is my subject' + new (Date().getTime())+'">[email protected]</a>);
</script>
The snippet of code I used is this one:
document.write('<a href="mailto:[email protected]?subject=email_' + new (Date().getTime()) + '"></a>');