i try to send mail by window.location.href with "mailto:email@a...?
subject=text&body=text"
In netscape that's work perfectly even with a "big" body
But in ie when you have a lot of char into the body i've a syntax error
message.
Then i make this test :
myURL ="mailto:email@h...?subject=test&body="
for (var i = 0 ; i<3000 ; i++ )
{
myURL += "a";
}
window.location.href = myURL.toString();
with 3000 occurence i've syntax error message but with 2000 that's working
So that's means href have a limitation in ie.
Somebody know somthing about that ?
How to change this limit ?