getConf().setProperty("mail.smtp.port", "2345");
getConf().setProperty("from", "from@domain.com");
getConf().setProperty("replyTo", "replyTo@domain.com");
getConf().setProperty("defaultLanguage", "en-UK");
ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory("vm://localhost?broker.persistent=false");
this.context = EasyMock.createMock(Context.class);
EasyMock.expect(context.lookup("ConnectionFactory")).andReturn(factory).anyTimes();
EasyMock.replay(context);