Announcement

Collapse
No announcement yet.

Email a Friend

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Email a Friend

    anyhody know of an 'email a friend' link that can be put with products. i would prefer a text link to save space - rather than the text box version of 'email a friend' that is available in the knowledgebase. i dont even care if its just a mailto link that opens up outlook, as long as it takes the product link with it.
    Mark

    #2
    This might help you - it's what I use (although not a text link):
    Code:
    		<!-- email a friend table begin -->
    		<table WIDTH=100% BORDER="0" cellspacing="0" cellpadding="0" bgcolor="#FFDFDF">
    			<TR>
    				<TD bgcolor="#FF0000"><center><span style="color:#FFFFFF "><b>Email a Friend</b></span></center></TD>
    			</TR>
    			<TR>
    			<TD><center><span style="color:#FF0000 "><b>Drop a hint!</b></span><br>Email this page to a friend</center><br>
                  <input type=text value="email address" size="12" onchange="
    var thisloc=location.href;
    if (this.value != '') {
    location.href='mailto:' + this.value
    +'?subject=Take%20a%20look%20at%2this%2great%2lingerie&body=I%20saw%20
    ' + thisloc + '%20and%20thought%20you%20would%20be%20interested.%20I%20think%20it%20looks%20great.'
    }
    ">
                  <input type=button value="OK"></TD>
    			</TR>
    		</table>
    <!-- email a friend table end -->

    Comment

    Working...
    X