Skip to content Skip to sidebar Skip to footer

Html Web Form Mailto Not Working Issue

I need help, I am new to HTML5. I build a HTML5 web form and try to use mailto function to send out. But when I try to do it on my android device with chrome browser, it shows: W

Solution 1:

mailto: as a form action simply is not well supported.

Use an HTTP(S) form action and send the email from your server instead of the user's (possibly non-existent) email client.

Solution 2:

The solution is to use the control panel and go to folder options.

Open the "File Types" tab.

There find the entry "URL: MailTo Protocol" ... highlight it and click "advanced".

Now highlight "open" and click "edit".

You will probably find outlook express as the mailto program.

Change "application to use" as follows: "C:\Documents and Settings\HP_Administrator\Local Settings\Application Data\Google\Chrome\Application\chrome.exe" https://mail.google.com/mail?extsrc=mailto&url=%1

The path within the quote marks is whatever is the correct path on your machine to chrome.exe.

The Application: chrome

That's it.

Post a Comment for "Html Web Form Mailto Not Working Issue"