Where to find all available Java mail properties?

前端 未结 1 463
一个人的身影
一个人的身影 2021-01-31 02:33

Where do I find a list of all available Java mail properties that I can pass to the Session object? I am only able to find basic properties in the API. Browsing blogs to find so

相关标签:
1条回答
  • 2021-01-31 02:42

    In the api is a reference to the properties for the specific sun protocol providers. Not sure if you were looking for these:

    • https://javaee.github.io/javamail/docs/api/com/sun/mail/imap/package-summary.html
    • https://javaee.github.io/javamail/docs/api/com/sun/mail/pop3/package-summary.html
    • https://javaee.github.io/javamail/docs/api/com/sun/mail/smtp/package-summary.html

    These are also set on the session object but you use them on your own risk since in other mail implementations they are maybe not supported or they change in the future.

    0 讨论(0)
提交回复
热议问题