jackOH
01-13-2005, 01:51 AM
In one of my web pages, I'm trying to preformat a "mailto:" URL email message (within javascript). When I have my browser (IE 6) email tool set to Outlook Express, the formatting works. When I have my browser email tool set to Yahoo Mail, the formatting is lost. Is ther a way I can get the formatting to work in Yahoo mail, and across all other mail tools?
I've tried using different character sets (hex, octal, and excape sequences {like \n}, but they all get stripped out. Here is a similar javascript function that I'm using:
function go(){
window.location='user@domain.com?subject=Subject text&body=Body text line 1.%0ALine 2.\n';
}
Thanks!
I've tried using different character sets (hex, octal, and excape sequences {like \n}, but they all get stripped out. Here is a similar javascript function that I'm using:
function go(){
window.location='user@domain.com?subject=Subject text&body=Body text line 1.%0ALine 2.\n';
}
Thanks!