278279280281282283284285286287288
final Iterator it2 = getCcAddresses().iterator(); while ( it2.hasNext() ) { email = it2.next().toString(); getLog().info( "Sending cc mail to " + email + "..." ); mailMsg.addCc( email, "" ); } } if(getBccAddresses() != null) {
279280281282283284285286287288289
final Iterator it2 = getCcAddresses().iterator(); while ( it2.hasNext() ) { email = it2.next().toString(); getLog().info( "Sending cc mail to " + email + "..." ); mailMsg.addCc( email, "" ); } } if ( getBccAddresses() != null ) {
313314315316317318319320321322323
{ for ( Object o : getCcAddresses() ) { email = o.toString(); getLog().info( "Sending cc mail to " + email + "..." ); mailMsg.addCc( email, "" ); } } if ( getBccAddresses() != null ) {
312313314315316317318319320321322