@param address The email address to add to the CC list.
93949596979899100101102103
cc = stdin.readLine().trim(); if (cc.length() == 0) break; header.addCC(cc); ccList.addElement(cc); } System.out.print("Filename: "); System.out.flush();
9293949596979899100101102
if (cc== null || cc.length() == 0) { break; } header.addCC(cc.trim()); ccList.add(cc.trim()); } System.out.print("Filename: "); System.out.flush();
8990919293949596979899
919293949596979899100101
cc = stdin.readLine(); if (cc== null || cc.length() == 0) break; header.addCC(cc.trim()); ccList.add(cc.trim()); } System.out.print("Filename: "); System.out.flush();
949596979899100101102103104
cc = stdin.readLine().trim(); if (cc.length() == 0) break; header.addCC(cc); ccList.add(cc); } System.out.print("Filename: "); System.out.flush();