This page shows how to make a HTML hyperlink that will launch the users mail client ready to send email to your email address by simply adding mailto into the regular hyperlink href code followed by your email address ..

This page also shows how to make HTML eMail address button links, and CSS styled button links.

<a href="mailto:me@example.com">eMail Us</a>


eMail Us


<form>
<input type="button" value="Send eMail" onclick="window.location.href='mailto:me@example.com'" />
</form>



<form>
<input style="width: 300px; padding: 20px; box-shaddow: 6px 6px 5px; #999999; -webkit-box-shadow: 6px 6px 5px #999999; -moz-box-shadow: 6px 6px 5px #999999; font-weight: bold; background: #CCFF00; color: #000000; cursor: pointer; border-radius: 10px; border: 1px solid #D9D9D9; font-size: 150%;" type="button" value="Send eMail" onclick="window.location.href='mailto:me@example.com'" />
</form>



This fancy send eMail button can be styled with internal or external CSS. The shadow on this button moves when the mouse pointer is hovered over. Unlimited effects can be achieved. For instructions on how to set up this style of button, please see our button links page.


Tip: Make button style mailto links quickly with my FREE CSS link generator.