nonprogrammer
Technical User
Hello,
I have a javascript that opens outlook and inserts the subject and body into the e-mail
here is what my script looks like
how could I make the Updated Project # "+A; a link?
I have a javascript that opens outlook and inserts the subject and body into the e-mail
here is what my script looks like
Code:
<script type=text/javascript>
function openoutlook()
{
var S=document.form.customer.value;
var B=document.form.comments2.value;
var M=document.form.email.value;
var A= <% = request.querystring("id") %>
self.location="mailto:someone@somewhere.com?subject= An Update Has Been Made To Project # "+A+" By "+M+"&cc="+B+"&body="+M+" Updated Project # "+A;
}
</script>