How to send text from JTextArea to some email, using Java
I ha开发者_如何学Pythonve GUI window for users to write their feedback, comments, etc. in JTextArea component. What I want to do is for user send this text they typed via email when they press the button Submit.
What classes should I use to achieve this? I googled it but found nothing useful.
The base API to use for email in Java is JavaMail. It's not the nicest of APIs, though, and you may want to consider another API on top of it, such as Apache Commons Email or Spring Mail.
精彩评论