Someone knows a mail (SMTP) delivery library for Java?

前端 未结 3 1701
生来不讨喜
生来不讨喜 2021-02-03 11:51

I\'d like to send mail without bothering with the SMTP-Server which is used for delivery.

So JavaMail API doesn\'t work for me because I have to specify a SMTP server to

3条回答
  •  醉梦人生
    2021-02-03 12:17

    Don't.

    Sending email is much more complex than it seems. Email servers excel at (or should excel at) reliable delivery.

    Set up a separate email server if you need to- that will be essentially the same as implementing one in Java (I doubt you will find libraries for this task- they would be essentially complete mail servers), but much more simpler.

提交回复
热议问题