Tellier Benoit created MIME4J-268:
-------------------------------------
Summary: Helper method for message to bytes convertion
Key: MIME4J-268
URL: https://issues.apache.org/jira/browse/MIME4J-268
Project: James Mime4j
Issue Type: New Feature
Components: dom
Reporter: Tellier Benoit
Current code looks like this:
{code:java}
public byte[] asBytes(Message message) throws IOException {
ByteArrayOutputStream buffer = new ByteArrayOutputStream();
DefaultMessageWriter writer = new DefaultMessageWriter();
writer.writeMessage(message, buffer);
return buffer.toByteArray();
}
{code}
This is rather complicated for clients. I would propose to introduce that
helper method in *DefaultMessageWriter*.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)