Why did you grade low? If the answer is "it cannot be done", that's still a valid answer, even though it was not what you wanted to hear: http://www.experts-exchang
Please consider regrading.
Main Topics
Browse All TopicsI want to do the following task:
User click a picture from web page, it will open the Outlook mail client for send e-mail (the picture already embed at email body). User just adds TO, CC and BC can be sending the mail out.
In my case, the environment as following:
1) All user computers have Outlook mail client installed
2) User browser may be IE or Firefox
3) Server side script use ASP.NET
At start, I want to use mailto from the web page, but mailto seems can't put embed image via Firefox (It is my google result, is it correct?)
Then, I change my way to use ASP.NET to open Outlook Mail Window at client to do that. But I can't google the method to implement it.
Anyone can help me to solve this problem?
Thanks in Advance!
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Why did you grade low? If the answer is "it cannot be done", that's still a valid answer, even though it was not what you wanted to hear: http://www.experts-exchang
Please consider regrading.
Business Accounts
Answer for Membership
by: abelPosted on 2009-08-03 at 01:52:58ID: 25002693
I'm afraid I have to disappoint you here: you cannot open a client application automatically from a web page without the users consent. And you cannot program (i.e., click buttons etc) on a client's application without writing your own extension control.
For IE before IE8, you could do something like this using an ActiveX control.
For FF you're out of luck, as the XUL extensions you can write do not allow interaction with anything other than Firefox itself.
Compare it with opening the registry editor. I know you don't want to do that either, but if you would place a *.REG file on your web site, the registry editor would open it. That's the user clicking the link, but you cannot do anything to that register editor nor can you open it automatically. If you would, you would be able to destroy anything on the client's computer, which is simply why this cannot be done.
Long story short: web browser very strictly prohibit interaction with programs on their machines.
Using a mailto: link with an address and a subject line is the best you can get. ASP.NET will not be of any help here, simply because it cannot be done. Sorry to give you bad news...
-- Abel --