* @param aMessage
* @return
* @throws JMSException
*/
protected boolean sendMessage(InternetAddress aDestination, MimeMessage aMessage) throws JMSException {
Destination dest = null;
try {
dest = DestinationUtils.parse(aDestination.getAddress());
} catch (IllegalArgumentException e) {
LOG.error("Invalid destination '{}'. {}", new Object[] { aDestination.getAddress(), e.getMessage(), e });
return false;