Hi All;
I'm in need of a wee bit of help with emial "tell a friend"
I followed the instructions on page 47 on Actinic 7 advanced users guide (below) (yes I actually read the manual!) but when file saved it created 4 identical lines of email a friend input boxes Any tips?
Thank you
Including an 'Email A Friend' Link into Actinic
Enter the following code into your product layout template (normally called Act_ProductLine.html)
just before NETQUOTEVAR:NEXT...
Enter e-mail address to tell a friend
<input type=text value="" size=40 onchange="
var thisloc=location.href + '#NETQUOTEVAR:PRODUCTANCHOR';
if (this.value != '') {
location.href='mailto:' + this.value
+'?subject=Take%20a%20look%20at%20NETQUOTEVAR:PRODUCTNAME&body=I%20saw%20
' + thisloc + '%20and%20thought%20you%20would%20be%20interested.'
}
">
<input type=button value="OK">
I'm in need of a wee bit of help with emial "tell a friend"
I followed the instructions on page 47 on Actinic 7 advanced users guide (below) (yes I actually read the manual!) but when file saved it created 4 identical lines of email a friend input boxes Any tips?
Thank you
Including an 'Email A Friend' Link into Actinic
Enter the following code into your product layout template (normally called Act_ProductLine.html)
just before NETQUOTEVAR:NEXT...
Enter e-mail address to tell a friend
<input type=text value="" size=40 onchange="
var thisloc=location.href + '#NETQUOTEVAR:PRODUCTANCHOR';
if (this.value != '') {
location.href='mailto:' + this.value
+'?subject=Take%20a%20look%20at%20NETQUOTEVAR:PRODUCTNAME&body=I%20saw%20
' + thisloc + '%20and%20thought%20you%20would%20be%20interested.'
}
">
<input type=button value="OK">
Comment