如何配置spring通过Annotations发送SMTP邮件而不使用XML?
我需要发送 SMTP 电子邮件,但我想避免使用 XML 来配置 spring 服务并仅使用注释。
如何配置整个 SMTP 发送器并仅通过代码和注释使用它?
谢谢
I need to send SMTP emails, but I'd like to avoid to use XML to configure spring services and use annotations only.
How can I configure the whole SMTP sender and use it only by code and annotations?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 org.springframework.mail.javamail.MimeMessageHelper,如下所示:
这是您要找的吗?取自 http://static.springsource.org/spring/docs /3.0.x/reference/mail.html,请查看那里以查看一些更高级的示例。 (附件等)
With using org.springframework.mail.javamail.MimeMessageHelper, like this:
Is this what you were looking for? Taken from http://static.springsource.org/spring/docs/3.0.x/reference/mail.html, please have a look there to see some more advanced samples. (Attachments, etc)
使用自动装配
并在 XML 中添加以下行:
请参阅文档以获取更多帮助。
Use Autowiring
and in XML add the following lines:
Refer documentation for more help.