Example #1
0
  public void writeTo(OutputStream out) throws IOException, MessagingException {

    BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(out), 1024);
    mHeader.writeTo(out);
    writer.write("\r\n");
    writer.flush();
    if (mBody != null) {
      mBody.writeTo(out);
    }
  }