Not everything has to be automatically wired by the container. You can register the Example class like this:
container.Register(new InjectionFactory(c =>
{
var receive = new MessageQueue("receivePath");
var send = new MessageQueue("sendPath");
return new Example(receive, send);
});