任何人都可以分享一些消息来源,或者您能告诉我如何使用RabbitMQ和Spring boot发送批量电子邮件吗?在此先感谢
使用连接到电子邮件出站适配器的AMQP入站通道适配器。
@Bean
public IntegrationFlows flow() {
return IntegrationFlows.from(Amqp.inboundAdapter(...))
.split( ... ) // custom splitter to generate multiple
.handle(Mail.outboundAdapter(...))
.get();
}