Hi William A, Thank you for your quick reply! So I am looking for a workaround or whatever that will make the plain-text version have breaks. Is there anything I can put in my html that will tell your email-generating code to put line breaks in the plain text? <P> or <br> does not seem to result in crlf in the plain-text. Here is the most simple illustration of the problem: Steps: Create an email. Use "custom code" template. <h2>Coming Events</h2>
<div>
<div><h2>Event 1: Identifying Ferns</h2></div>
<h4>May 14 2:00 pm - 3:00 pm EST</h4>
<p>paragraph 1. <br> This linefollows a br.</p>
<p>paragraph 2. This is a paragraph that contains information about the fern event.</p>
<p>paragraph 3. More info about the fern event. </p>
</div>
<div>
<div><h2>Event 2: How to Find Crystals</h2></div>
<h4>May 20, 2023 2:00 pm - 3:00 pm EST</h4>
<p>paragraph 1.</p>
<p>paragraph 2. This is a paragraph that describes the crystals event.</p>
<p><br>This line inside p and br. More e info about the crystals event. </p>
</div> When I send the email, here is what constant contact generates for the plain text section: Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 7bit
Coming Events Event 1: Identifying Ferns May 14 2:00 pm - 3:00 pm EST paragraph 1. This linefollows a br. paragraph 2. This is a paragraph that contains information about the fern event. paragraph 3. More info about the fern event. Event 2: How to Find Crystals May 20, 2023 2:00 pm - 3:00 pm EST paragraph 1. paragraph 2. This is a paragraph that describes the crystals event. This line inside p and br. More e info about the crystals event. This might be OK for a short email, but for a newsletter with a long list of events and longer descriptions, it's not usable.
... View more