mime-types

HTML Formatting in the Automated Mail Content

StringWriter sw = new StringWriter(); PrintWriter pw = new PrintWriter(sw); String rowFormat = "%8s %8s %8s %8s%n"; pw.printf(rowFormat, "Col A", "Col B", "Col C", "Col XY"); pw.printf(rowFormat, "A", "19", "Car", "55"); pw.printf(rowFormat, "X", "21", "Train C", "-4"); pw.printf(rowFormat, "B", "-9", "Bike", "0"); String message = sw.t...