Welcome to LyndaRoxanne.Com your eBay auction help site!
AuctionSniper.com - Powerful eBay sniping solutions.




How to Create an 'Email Me' Link

You can create a link in your auctions that will allow people to email you when they click on it. Here's the HTML (the parts in red can be changed to suit your needs) down arrow

<A HREF="MAILTO:youremailaddressgoeshere">Send me an email</A>

And it will look like this-

Send me an email

You can even add an email subject line into the HTML like this down arrow

<A HREF="MAILTO:youremailaddressgoeshere?SUBJECT=eBay Auction Question">Send me an email</A>

When someone clicks on your email link, the subject line of the email will already be filled in for them, but the link stilll looks like this-

Send me an email


Did you noticed how the email address showed up in the bottom left corner of your toolbar when you held your cursor over the email link? We can add a something to our HTML that will give us control over what text appears on the toolbar.
It's done like this
down arrow

<A HREF="MAILTO:youremailaddressgoeshere?subject=eBay Auction Question" onMouseOver="window.status='Send me an email'; return true;" onMouseOut="window.status=''; return true;">Got Questions? Email Me!</A>

Just change the red sections to suit your own needs

This is how it will look-

Got Questions? Email Me!


You can even incorporate an image into the MAILTO link like this down arrow

<A HREF="MAILTO:youremailaddressgoeshere?subject=eBay Auction Question" onMouseOver="window.status='Send me an email'; return true;" onMouseOut="window.status=''; return true;"> <IMG SRC="http://www.yourimagehost.com/yourname/yourpicsname" BORDER SIZE="0"></A>

And it will look like this-


Click here to practice your HTML