Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

javascript to open outlook

Status
Not open for further replies.

nonprogrammer

Technical User
Joined
Dec 28, 2005
Messages
143
Location
US
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

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>
how could I make the Updated Project # "+A; a link?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top