Hi there,
I'm trying to create a 'client' for Outlook Web Access which intercepts links/commands like mailto: etc. The problem i've got is it's adding the mailto: part into the URL:
"C:\Program Files\Internet Explorer\IEXPLORE.EXE" "http://mail/exchange/%UserName%/Drafts/?Cmd=New&MailToAddr=%1"
returns as:
"C:\Program Files\Internet Explorer\IEXPLORE.EXE" "http://servername/exchange/%UserName%/Drafts/?Cmd=New&MailToAddr=
mailto:[email protected]"
So what I would like to do, is point the mailto: command to an .asp page that removes the mailto: part of the link, and forwards onto:
"C:\Program Files\Internet Explorer\IEXPLORE.EXE" "http://servername/exchange/%UserName%/Drafts/?Cmd=New&
[email protected]"
Any ideas?
Thanks/...