W
Wayne-I-M
I have this function (from a mailthisurl button with a text box for e mail
address)
{
var subj = "Re - Subject here"
var text = "Some text to goes here"
var thispage = parent.location.href
var content = "mailto:"
+ document.forms['eMailer'].elements['address'].value
+ "?subject=" + subj
+ "&body=" + text + "%0d%0a"
window.location = content
}
It just seems a little over the top (I'm trying to simplify my site).
What I am looking for is a button that will open outlook and fill in the
address line = our e mail address (this button is for feedback)
Subject = some subject
Content = some content
Any ideas or links would be really good
Thank you
address)
{
var subj = "Re - Subject here"
var text = "Some text to goes here"
var thispage = parent.location.href
var content = "mailto:"
+ document.forms['eMailer'].elements['address'].value
+ "?subject=" + subj
+ "&body=" + text + "%0d%0a"
window.location = content
}
It just seems a little over the top (I'm trying to simplify my site).
What I am looking for is a button that will open outlook and fill in the
address line = our e mail address (this button is for feedback)
Subject = some subject
Content = some content
Any ideas or links would be really good
Thank you