问题标签 [apache-commons-email]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
java - 如何从 Play 发送带有附件的电子邮件!框架 1.2.4
试图玩!发送带有附件的电子邮件的框架。如果我不将附件添加到邮件中,下面的代码可以正常工作。我已经尝试过使用 Play 的 Mailer 类和 Apache Commons 类(如下所示),但是在这两种情况下,页面都只是用微调器(Chrome)坐在那里,并且没有收到任何电子邮件。
java - Why is this URL not opened from Play! Framework 1.2.4?
I have a URL in my Play! app that routes to either HTML or XLSX depending on the extension that is passed in the URL, with a routes line like :-
so calls.html renders the page, calls.xlsx downloads an Excel file (using Play Excel module). All works fine from the browser, a cURL request, etc.
I now want to be able to create an email and have the Excel attached to it, but I cannot pull the attachment. Here's the basic version of what I tried first :-
but it just doesn't pull the URL content, it just sits there without any error messages, with Chrome's page spinner going and ties up the web server (to the point that requests from another browser/machine don't appear to get serviced). If I send the email without the attachment, all is fine, so it's just the pulling of the file that appears to be the problem.
So far I've tried the above method, I've tried Play's WS webservice library, I've tried manually-crafted HttpRequests, etc. If I specify another URL (such as http://www.google.com) it works just fine.
Anyone able to assist?
java - HtmlEmail 中的 setTo 方法用于将邮件设置为多个收件人的问题
我们有一个发送提醒邮件的模块。我们正在使用apache commons email
库来发送邮件。addTo
如果我们使用的 方法只发送一个电子邮件地址,我们没有问题HtmlEmail
,但是当我们尝试将同一邮件发送给使用setTo
which 的多个用户时,我们会遇到异常接受Collection
。
甚至commons mail
javadoc 也提到这种方法是向一组电子邮件地址发送邮件,但令人惊讶的是它不起作用。
是否有任何解决方法来解决此问题或提示继续正确的方向?
java - Apache FOP - PDF 流式传输到 Commons 电子邮件附件
我正在使用带有 XSL-FO 的 Apache Fop 来生成 PDF。然后我尝试将 pdf 作为附件流式传输到 apache.commons.mail.HtmlEmail; 我收到带有附件的电子邮件,但是收到以下错误。长度 0 字节,无编码。我能够毫无问题地在文件系统上创建 pdf,所以我知道这段代码的 FOP 部分没有任何问题,所以我不确定它为什么不起作用。有人能告诉我我错过了什么吗?
我的代码。
Fop类
}
java - Apache Commons 电子邮件:如何通过非 SMTP api 发送电子邮件?
我正在替换一个用于通过 SMTP 发送电子邮件的类,现在它将通过另一个 API 来完成。
我正在编写的接口在 Apache Commons Email 类中发送,并准备好电子邮件。
我不知道如何:
- 覆盖 Apache Commons 电子邮件的功能以使用我自己的传输机制而不是 SMTP
org.apache.commons.mail.Email
或从基类中提取基于 HTML 或文本的电子邮件
java - 使用 commons-email 配置模拟电子邮件
我有一个通过 maven使用 commons-email ( http://search.maven.org/#artifactdetails|org.apache.commons|commons-email|1.2|jar ) 的项目。我想使用电子邮件模拟类(http://commons.apache.org/email/testapidocs/org/apache/commons/mail/mocks/MockHtmlEmailConcrete.html)来编写一些单元测试。但是 org.apache.commons.mail.mocks 包永远不会通过 maven 依赖项包含在内。我在哪里可以找到这个包?
java - 带有apache常用电子邮件的进度条
我正在使用 apache common email library发送电子邮件,如下
我想显示进度条,直到附加文件并发送..
我们该怎么办?
java - 带有内联附件的多部分电子邮件:Excel 工作表的一部分被视为图像
关于使用 apache 公共库的附件的 .INLINE 部分的快速问题。
基本上我应该通过邮件发送部分excel表,在邮件正文中显示所述部分,如果我没记错的话,应该这样写:
现在问题来了:使用我的代码,我可以轻松地发送只是附件的附件,如果它们是图像,我也可以将它们内联。
有什么方法可以获取xml文件的一部分,因为它是使用apache POI格式化的?(我发现了关于 VBA 的类似主题 - excel,但我有点需要在我的程序中实现这一点。如果可能的话,我想发送选择,因为它是格式化的,因为它非常好看,感谢 POI 。 )
最终结果应该类似于从邮件正文中出现的 xml 文件的选定单元格中复制/粘贴,但是,由于它不是图像,如果我只使用 .INLINE 语句,它将无法正确显示..I '甚至尝试对 JTable 组件进行快照,但没有任何有用的结果。
以下是发送电子邮件的代码(如果有帮助):
PS:请注意发送附件或内联图像没有问题..这是apache commons的限制还是我只是没有经验?(尽管 XD,后者仍然不在主题范围内)
java - Apache Commons 电子邮件,如何将 Content-Transfer-Type 的附件发送为可引用打印的电子邮件?
我有一个应用程序通过发送带有附件的电子邮件与其他人的服务器通信。
我使用 Apache Commons Email 发送带有附件的电子邮件,如下所示:
问题是,另一端的人说“标头信息的 Content-Transfer-Encoding 值为“7bit”,它需要“引用打印”。
我的问题是,如何进行此更改,以便以适当的方式附加文件?
抢
apache-commons-email - Unable to listen to events using Apache Commons Email
I'm sending emails using Apache commons email lib.
However, I'm unable to listen to Connection and Transport events. I have added event listeners using:
...but don't receive any events.
My code is as follows:
}
Any help would be appreciated.