HTML Web Form Mailto Not Working Issue
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"