Re: Ignoring header stuff at start of message body?
Posted By:
MOA_javafanatic
Posted On:
Monday, January 14, 2002 05:37 AM
What fixed it for me was trimming the subject string.
I had been doing this:
msg.setSubject ( subject );
but doing this prevented the header information from being displayed in the message body.
msg.setSubject ( subject.trim() );