Output the message as an RFC 822 format stream. Note that, depending on how the messag was constructed, it may use a variety of line termination conventions. Generally the output should be sent through an appropriate FilterOutputStream that converts the line terminators to the desired form, ei
(OutputStream os)
| 1849 | * @see javax.activation.DataHandler#writeTo |
| 1850 | */ |
| 1851 | @Override |
| 1852 | public void writeTo(OutputStream os) |
| 1853 | throws IOException, MessagingException { |
| 1854 | writeTo(os, null); |
| 1855 | } |
| 1856 | |
| 1857 | /** |
| 1858 | * Output the message as an RFC 822 format stream, without |
no test coverage detected