289290291292293294295296297298299
final Iterator it3 = getBccAddresses().iterator(); while ( it3.hasNext() ) { email = it3.next().toString(); getLog().info( "Sending bcc mail to " + email + "..." ); mailMsg.addBcc( email, "" ); } } mailer.send( mailMsg ); getLog().info( "Sent..." );
290291292293294295296297298299300
323324325326327328329330331332333
{ for ( Object o : getBccAddresses() ) { email = o.toString(); getLog().info( "Sending bcc mail to " + email + "..." ); mailMsg.addBcc( email, "" ); } } mailer.send( mailMsg ); getLog().info( "Sent..." );
322323324325326327328329330331332