final Iterator it = getToAddresses().iterator();
while ( it.hasNext() )
{
email = it.next().toString();
getLog().info( "Sending mail to " + email + "..." );
mailMsg.addTo( email, "" );
}
if ( getCcAddresses() != null )
{
final Iterator it2 = getCcAddresses().iterator();