• 0

Question

Hi,

I have an html form that i would like external customers will be able to fill up and send it back to us.

<form action="[email protected]"?subject="email subject" method="submit">

For some reason in windows 7 64 bit, with outlook 2010 and explorer 9, mailto action doesn't work for me.

An empty outlook message is displayed and only the subject and recipients are added.

There is no attachment and no body text.

When I changed the default browser to FF i received the text i wanted in the body section instead as an attachment (postdata.att).

I can't use server code cause the html form is sent by outlook to external customers, so asp/php/cgi is irelevant for me.

Does anyone has a solution?

Thanks,

Link to comment
https://www.neowin.net/forum/topic/1109569-mailto-problem-with-explorer-9/
Share on other sites

13 answers to this question

Recommended Posts

  • 0

Mailto works with a <a href="mailto:[email protected]">link</a> and makes the user able to open a email program and send a mail to [email protected] thsi does not however work like a email form.

To make a email form I suggest to use code like php,

you can easily copy paste code from here ;): http://www.freeconta.../email_form.php

  • 0

Unfortunately as I mentioned, I really can't use a server side code, so PHP is also not an option.

What about CDO? Can I use it as a solution?

I read somewhere that microsoft doesn't support this technology with outlook 2010.

Is there some sort of a replacement for the CDO protocol?

  • 0

you say

I can't use server code cause the html form is sent by outlook to external customers,

Is it the fact you cant use server side code or don't know how to insert text into outlook message from php?

You can send mail directly from php using your own mail server to external clients

  • 0

Hi,

i do know how to use a server side code. i have no problem with the part where I send the form the external customers.

My problem is when the customers submit the form they receive. At the moment I'm usiing the mailto action which works perfectly fine with IE8, but in IE9 returns a blank email with outlook 2010.

I have no control nor access to the web server of the client therefore I was looking for a solution which doesn't involve a server side script.

The database is located in my organization's server, I only need the customers to fill up some info via the form and to automatically update the data in my database.

Till now it worked great...

  • 0

You have no access to the server but can update the mailto link? Sorry that does not make any sense.

Also i will add that any site that deals with customers/clients should have a fully working contact form rather than a link that opens an email client its more professional and easier for the users as not everyone uses outlook like you seem to be suggesting. I suggest you contact whoever this is and get them to sort out a contact form the problem would be fixed and it make them look more professional rather than cheap and lazy.

  • Like 1
  • 0

Thank you very much for your answer.

I need to explain my self better. The form is not part of a site.

My organization uses a VB software that has VB forms. One of the software's functions is to export a VB form into an HTML form and send it automatically through Outlook to external customers.

Since we work with Microsoft technology, and all our customers are organizations which use outlook and exchange server, it is the only thing we need to support.

The mailto action is generated automaticlly by the VB code and since the code was developed in house, we can change it if needed.

However, I can't change the external customers' server code! the only interaction with them is through the outlook mail.

When they submit the form, we get an email notification, we are requested to approve the data and only then the database is updated.

The problem occurs only when they submit the form and not when we send it to them.

I really need to find a better solution for this.

I understand that there lots of problems with the mailto action, and that it depends on the type of browser and mailbox I'm using. In my case, I already know that I need to make it work with outlook 2010 and IE9.

What could be the problem?

  • 0

The problem with mailto is simple... it's internet explorer itself, as always :p

And if it's microsoft server you could use asp instead of php , never heard of a web server unable to run anything besides html :/

And only using the mailto option isn't going to be working since the fault is not the webpage but webbrowser, this might be fixed in IE10 on windows 8, I can test it if you want.

  • 0

Ok im confused and looking at this wrong what im getting is:

We create a form in VB its converted to HTML we send that to our customers

They then fill it in and send back, we then update our records after a notification

What i dont get is why your making it all complecated and you still dont use a form "Because we can not change there server code!" who says you have to change there's? Create the form like you normally would and then add the asp/php and upload to your serverserver and then email them the link to the form which they can fill in and then there is no issues. The db with their answer/answers can be in a separate db or even joint to the main one so that only 1 click rather will update x clients instead of 10 clicks being 10 clients or i could be set to do it every xminutes/hours.

Anyway i'll let Seahorse take over, some borderlands then bed i think besides im not a huge coder it just interests me.

  • 0

as Xoligy says

set up the html form on your webserver

send the clients a link

they click the link fill in the form and submit it

thats takes all responsibility on submitting stuff etc from them to your form

its the simplest and easiest way to do it

  • 0

Xoligy, you are right that I can use server side code with my form and then upload it to our local web server, the only problem is that our customers are external customers. They have no access to our intranet web server, therefore, it does not matter if I send them a link to the form, they won't be able to open it.

It's a good solution to use a public internet server to host the forms, th problem here is the cost and maintenance that I'm sure we have the budget for it.

  • 0

Cost is an issue in all businesses, and i guess it depends on how big your business is, how many forms you plan on running at the same time and if you see the solution saving time which is money and in this case i feel it would as for cost host + domain i say about ?20-50 a year should cover you, then you just need a page marker or a fully working website and sort out how your links are going to work with the forms.

Look at it this way, once you have a site, forms and a database there is no need to check emails and update records which im guessing is what someone spends alot of time doing over and over again its wasted time imo.

This topic is now closed to further replies.
  • Posts

    • Visual Studio finally gets long-awaited feature that developers will love by Usama Jawad Visual Studio Code is Microsoft's popular, lightweight, open-source code editor, it is actually Visual Studio that is the company's flagship integrated development environment (IDE). Although the IDE already offers a boatload of useful features for developers, Microsoft has finally introduced a long-requested capability that will be loved by many. While developers have already been able to create Git pull requests (PRs) directly within Visual Studio for the past couple of years, it had not been possible to review a PR without switching to the browser, until now. Microsoft revealed in December 2025 that it is working on UX that enables developers to do just that, and fast-forward to June 2026, and Visual Studio finally has native capabilities to open and inspect a PR, discuss feedback, and wrap up the review, all without switching to the browser. This integration works for both GitHub and Azure DevOps (including on-prem). Developers have access to multiple surfaces to open a PR, including Git Repository, Git Changes, and the Git menu in Visual Studio. Once you open a PR, all the important details will be immediately visible to you, from where you can navigate to various levels of granularity and branch states, depending on the reviews that you are engaged in. As you would expect, you also get a diff view that enables you to see code changes inline or side-by-side in a separate panel. You can also review commit-by-commit. Additionally, this UX fosters collaboration as you can leave comments, reply to threads, and resolve conversations easily. Naturally, you can also leverage Copilot to apply a code suggestion to fix a potential issue. When you are done, you have the ability to approve, complete, and merge the PR. This is a pretty major feature as it has been requested heavily for the past few years. You can try it out in Visual Studio 2026 version 18.7, made available here recently. Microsoft plans to enhance this experience further in future releases with comment filtering, a timeline of PR activity, and more.
    • This AdGuard Family lifetime deal is still only $15.97 by Steven Parker Today's highlighted Neowin Deal comes via our Apps + Software section, where you can get a lifetime subscription and save 90% on a lifetime AdGuard Family Plan. AdGuard is a unique program that has all the necessary features for what they claim to be "the best web experience." The software combines the an advanced ad blocker, a privacy protection module, and a parental control tool—all working in one app. This software deals with annoying ads, hides your data from a multitude of trackers, protects you from malware attacks, and even lets you restrict your kids from accessing inappropriate content. Install AdGuard and see the internet as it was supposed to be: clean and safe. Get rid of annoying banners, pop-ups & video ads once and for all Hide your data from the multitude of trackers & activity analyzers that swarm the web Avoid fraudulent and phishing website and malware attacks Protect your kids online by restricting them from accessing inappropriate & adult content Good to know Family Plan Length of access: lifetime This plan is only available to new users Redemption deadline: redeem your code within 30 days of purchase Max number of devices: 9 Access options: desktop & mobile Software version: AdGuard Family Updates included A lifetime subscription of AdGuard Family Plan normally costs $169.99, but this deal can be yours for just $15.97, that's a saving of $157.02. For full terms, specifications, and license info please click the link below. Get this AdGuard Family lifetime deal for just $15.97 (was $169.99) Although priced in U.S. dollars, this deal is available for digital purchase worldwide. As an online publication, Neowin too relies on ads for operating costs and, if you use an ad blocker, we'd appreciate being whitelisted. In addition, we have an ad-free subscription for $28 a year, which is another way to show support! Support queries If you have queries or need support for any of the Neowin Deals, please use the contact form here. Neowin Deals are managed and sold by StackCommerce who represent Neowin on an affiliate basis. Why we post these deals We post these because we earn commission on each sale so as not to rely solely on advertising, which many of our readers block. It all helps toward paying staff reporters, servers and hosting costs. So for those that keep moaning and complaining, be thankful we're still online for you to even do that. Other ways to support Neowin Whitelist Neowin by not blocking our ads Create a free member account to see fewer ads Make a donation to support our day to day running costs Subscribe to Neowin - for $14 a year, or $28 a year for an ad-free experience Disclosure: Neowin benefits from revenue of each sale made through our branded deals site powered by StackCommerce.
    • the MCT currently downloads 26200.8653, so not completely up to date.
    • Around 68% of developers are now using AI to generate code during development, and some experts are saying that a single developer using AI tools can now do the work of an entire team of 4 to 5 engineers.  According to Figma's State of the Designer 2026 report, 72% of designers now use generative AI in their workflows and 91% say it improves the quality of their work, not just their speed.  But does this mean web developers and designers are becoming less relevant, or are they simply evolving into a different kind of role? Would love to hear from developers and designers here has AI made your job easier, or do you feel threatened by how fast these tools are improving
  • Recent Achievements

    • Week One Done
      Timaximus earned a badge
      Week One Done
    • One Month Later
      Timaximus earned a badge
      One Month Later
    • Rookie
      FBSPL went up a rank
      Rookie
    • First Post
      davidbazooked earned a badge
      First Post
    • Week One Done
      davidbazooked earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      508
    2. 2
      PsYcHoKiLLa
      181
    3. 3
      +Edouard
      160
    4. 4
      Steven P.
      83
    5. 5
      ATLien_0
      75
  • Tell a friend

    Love Neowin? Tell a friend!