Really sorry for the delayed response.
Here’s my tell-a-friend form. In the docs it says if we leave the Message and To fields open for editing, we are inviting spammers—so I decided to make the message hidden. It includes the {item_desc} field, which contains the item description. This field is set to XHTML, but changing it to AutoBr didn’t help. When the friend receives the email, the description contains <p> and <br> tags.
{exp:email:tell_a_friend charset="utf-8" allow_html="no" redirect="4" replyto="yes" return="{site_url}shop/product/{url_title}"}
<label for="from">Your Email: </label>
<input type="text" id="from" name="from" size="40" maxlength="35" value="{logged_in_email}" /></p>
<label for="name">Your Name: </label>
<input type="text" id="name" name="name" size="40" maxlength="35" value="{logged_in_screen_name}" /></p>
<label for="to">Your Friends Email: </label>
<input type="text" id="to" name="to" size="40" maxlength="35" /></p>
<label for="subject">Subject: </label>
<input type="text" id="subject" name="subject" size="40" value="Item for sale" /></p>
<label for="message">Your friend will receive a link to this item and a message about joining our site to be able to view it.</label>
<input type="hidden" id="message" name="message" rows="10" cols="40" value="Your friend {logged_in_screen_name} ({logged_in_email}) thought you would be interested to see this item for sale. Check it out! You can reply to your friend directly by replying to this message.
{title} - {if sale_price !=""}${sale_price}{if:else}${reg_price}{/if}
------------
{item_desc}
------------
Sincerely,
Your friends at {site_url}" />
{if captcha}
Please enter the word in the image below:
{captcha}
<input type="text" name="captcha" value="" maxlength="20" /></p>
{/if}
<input name="submit" type='submit' value='Send to a Friend' /></p>
{/exp:email:tell_a_friend}
TruncHTML seems like a great alternative to Character Limiter, which is something I’ve been looking for in another area of this site, so I will for sure use that elsewhere. But for this, I’m not sure it will work. It’s more like I need an HTML stripper, which I can find as an add-on. Just wanted to make sure there isn’t some setting in EE I’m missing.
Thank you!