Access the answers to your technology questions today.
Subscribe Now
30-day free trial. Register in 60 seconds.
What Makes Experts Exchange Unique?
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.
Subscribe Now
30-day free trial. Register in 60 seconds.
Join the Community
Give a Little. Get a Lot.
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.
Join the Community
by: jason1178Posted on 2009-09-07 at 19:44:51ID: 25278368
Hi williampeck,
gmail.com? subject=Pl ease subscribe me to your e-mail updates"><input type="button" value="Subscribe"></a>
You're not using the best code to accomplish the task:
<a href="mailto:user.removed@
<inputs> are meant to be used in a form framework and not on their own. Wrapping an input in an <a> tag is also not good syntax and that could be causing FF to read two requests.
If you want a button to open the email client, you would be better using CSS to define a class that makes the link look like a button.
-----------
To be honest, using a mailto for a subscription is really not what you should be doing. You should be passing the user's email address via a form to a database and having a script process things.