What I am trying to do is give my customers an option to e-mail me the items in their shopping cart without actually submitting an order.
Below is the closest I have been able to find
It will send an e-mail from a persons default mail client and it will send just the link to they page they are on. I need to send the e-mail without using their client much like submitting a form, and it needs to be the actual page not a link to it. Lastly I need to be able to place the link on a page other than the shopping cart.
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>My Page</title>
<script language="javascript">
function emailCurrentPage() {
window.location.href = "mailto:?subject=" + document.title + "&body=" + escape(window.location.href);
}
</script>
</head>
<body>
<a href="javascript:emailCurrentPage()">Mail this page!</a>
</body>
</html>