if (CVUtility.isEmailAddressValid(toAddress)) {
ArrayList toList = new ArrayList();
toList.add(toAddress);
messageVO.setToList(toList);
try {
boolean messageSent = remote.sendMessage(accountVO, messageVO);
if (messageSent) {
logger.debug("["+dataSource+"]Successfully Sent Mail Merge to: "+toAddress);
} else {
logger.error("["+dataSource+"]Mail Merge Failed sending message to: "+messageVO.getToList()+", from account: "+accountVO.getAccountID());
}