Hello,
I want to make a "send to friend" page,
I found a free to use script but it sends the URL that the visitor is on.
The script opens the default mailprogram and send the mail
Can I change the script , so I can send another URL instead of the URL the
visitor is on?
(I tried everything but nothing works, I'm not good at writing scripts as
well)
here is the script, please advice me what I have to change
thanks
u = window.location ;
m = "I thought this might interest you...";
function mailThisUrl() {
good = false
checkEmailAddre ss(document.eMa iler.address);
if (good) {
// the following expression must be all on one line...
window.location =
"mailto:"+docum ent.eMailer.add ress.value+"?su bject="+m+"&bod y="+document.ti t
le+" "+u;
I want to make a "send to friend" page,
I found a free to use script but it sends the URL that the visitor is on.
The script opens the default mailprogram and send the mail
Can I change the script , so I can send another URL instead of the URL the
visitor is on?
(I tried everything but nothing works, I'm not good at writing scripts as
well)
here is the script, please advice me what I have to change
thanks
u = window.location ;
m = "I thought this might interest you...";
function mailThisUrl() {
good = false
checkEmailAddre ss(document.eMa iler.address);
if (good) {
// the following expression must be all on one line...
window.location =
"mailto:"+docum ent.eMailer.add ress.value+"?su bject="+m+"&bod y="+document.ti t
le+" "+u;
Comment