lottastuff - I guess you saw Tarwn's post; that's how you add a subject and body to the e-mail. You can also check out this link:
HTH and Tarwn, thanks for your ideas. I don't think its an unwanted character that's cutting things short, because when I add newline characters %0d (see above link), each time I add one it shortens the message by a few characters, so it seems to be stopping at a certain length.
Hopefully this won't confuse things: I'm actually using this href in an .xsl page that is rendering html. So my code looks like this:
<tr>
<td colspan="4" align="center>
<xsl:element name="a">
<xsl:attribute name="href">
mailto:&subject=Test&body=
Referral Date: <xsl:value-of select="@ReferralDate"/>%0d
Employee Name: <xsl:value-of select="@EmployeeName"/>%0d
Department: <xsl:value-of select="@Department"/>%0d
Employee Number: <xsl:value-of select="@EmployeeNumber"/>%0d
Telephone: <xsl:value-of select="@Telephone"/>%0d
First Name: <xsl:value-of select="@FirstName"/>%0d
Last Name: <xsl:value-of select="@LastName"/>%0d
Address: <xsl:value-of select="@Address"/>
City: <xsl:value-of select="@City"/>
State: <xsl:value-of select="@State"/>
Zip Code: <xsl:value-of select="@ZipCode"/>
Business Phone: <xsl:value-of select="@BusinessPhone"/>
Home Phone: <xsl:value-of select="@HomePhone"/>
Best Time To Call: <xsl:value-of select="@BestTimeToCall"/>
Estimated Asset Value: <xsl:value-of select="@EstimatedAssetValue"/>
Requested Information: <xsl:value-of select="@RequestedInformation"/>
Comments: <xsl:value-of select="@Comments"/>
</xsl:attribute>
<img src="/ImagesLib/btnEmail.gif" />
</xsl:element>
</td>
</tr>
so each time I added another %0d, like after First Name and Last Name, less of the address would display in the mail message, and it would cut off at the address field.
Any ideas would be greatly appreciated!!
Ray