Forum Moderators: open
So, I'm testing this JS script that brings up the users mail client, but my question is, what would come up for an AOL user? Does AOL have a mail client the pops-up just like Outlook Express does for me?
function mailpage()
{
mail_str = "mailto:?subject= Check this article " + document.title;
mail_str += "&body= " + document.title;
mail_str += "... at: " + location.href;
location.href = mail_str;
}
It is possible to set IE to open Hotmail, Yahoo! Mail and the like, but you can't do that in other browsers (and they might not even have that set up). In Netscape, unless you edit a script file, the Netscape Mail & News client will always open, regardless of what your default email client is.