|
|
|
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)
<A HREF="MAILTO:youremailaddressgoeshere">Send me an email</A>
And it will look like this-
You can even add an email subject line into the HTML like this
<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-
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
<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-
You can even incorporate an image into the MAILTO link like this
<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-