<style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman";}
a:link, span.MsoHyperlink
        {color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {color:purple;
        text-decoration:underline;}
p
        {mso-margin-top-alt:auto;
        margin-right:0in;
        mso-margin-bottom-alt:auto;
        margin-left:0in;
        font-size:12.0pt;
        font-family:"Times New Roman";}
span.EmailStyle18
        {mso-style-type:personal;
        font-family:Arial;
        color:navy;}
span.EmailStyle19
        {mso-style-type:personal;
        font-family:Arial;
        color:navy;}
span.EmailStyle21
        {mso-style-type:personal-reply;
        font-family:Arial;
        color:navy;}
@page Section1
        {size:8.5in 11.0in;
        margin:1.0in 1.25in 1.0in 1.25in;}
div.Section1
        {page:Section1;}
-->
</style>
                <p>This is probably a silly question and I think I know the answer, but this list has proven me wrong before.<br /><br />Is there any way to use a "mailto:" link (most likely by building the body content as a Javascript variable) to produce formatted text in the body?  It's okay if this is an IE-only solution; it's for a MS-based intranet site with Outlook on all machines.<br /><br />I've tried using the following:<br /><br />var sBody = "Here is some &lt;b&gt;sample&lt;/b&gt; text.\n\nWhat do you think?";<br />window.location.href = <a href="mailto:peter@brunone.com?subject=testmail&amp;body=">mailto:peter@brunone.com?subject=testmail&amp;body=</a>" + unescape(sBody);<br /><br />but even when I use unescape, the bold tags show up as bold tags (&amp;lt;b&amp;gt; in View Source).  Is there any hope for me, perhaps through custom-script some Outlook object?<br /><br />Cheers,<br /><br />Peter</p>