Why cfmailpart not including text/plain?
I've given up on being able to parse the text/html base64 encoded messages with my Thunderbird email client. There seems to be a long standing bug since 2009 that prevents me from parsing the email with my filters to sort them.
Anway, as a workaround till that gets fixed I was trying to simply put text in the email so that the key elements can be parsed for sorting with the filters. I can't figure out why this example below strips out the text/plain portion. Please forgive the formatting.
<cfmail to="me@domain.edu" from="webmaster@domain.edu" subject="domain- Error Page">
<cfmailpart type="text/plain">
#CGI.LOCAL_ADDR#<br/>
#error.Browser#<br/>
#error.Diagnostics#<br/>
#error.Message#<br/>
#error.QueryString#<br/>
#error.RemoteAddress#<br/>
#error.Type#<br/>
</cfmailpart>
<cfmailpart type="text/html">
<cfdump var="#error#" metainfo="no" abort="false">
</cfmailpart>
</cfmail>
At this time the text/html is the only thing that is visible. None of the text/plain comes through.
