我使用的是Thunderbird 有时,在转发邮件时,作为附件,我收到错误"发送邮件时发生错误 邮件服务器响应:
{
List<Future<?>> futures = launchTasks();
Exception ex = new Exception();
for (Future<?> future: futures)
try {
future.get();
} catch(ExecutionException e) {
//This process failed
ex.addSuppressed(e);
}
if (ex.getSuppressed().length > 0) throw ex;
}
2个问题。
如果我无法转发消息,那么它是如何首先发送给我的?是否有某种方式,附件或其他东西,我可以清理消息,以便我可以转发它?