I am trying to write some code that will create a new mail message when clicked on, but will include the time of creation in the body of the message. I am *not* trying to get it to auto-send. I still need to be able to make changes to the email if necessary, then manually send it.
Code I have so far makes the message w/ To: and Subject:
<a href="mailto:anyone@anywhere.com?subject="a Simple Email">Dropped Call</a>
Problem is that I can generate the current time in a simple javascript function, but I don't know how to put that time, stored in var curTime into the body of the email automatically. Any help is much, much appreciated.
Code I have so far makes the message w/ To: and Subject:
<a href="mailto:anyone@anywhere.com?subject="a Simple Email">Dropped Call</a>
Problem is that I can generate the current time in a simple javascript function, but I don't know how to put that time, stored in var curTime into the body of the email automatically. Any help is much, much appreciated.