开发者

Java mail: sending email without SMTP

开发者 https://www.devze.com 2023-01-27 04:34 出处:网络
I want to send an email without using SMTP protocol. Is that possible to implement using Java? Since, my remote machine does not have access to google, yahoo and other accounts. and even my office mai

I want to send an email without using SMTP protocol. Is that possible to implement using Java? Since, my remote machine does not have access to google, yahoo and other accounts. and even my office mail can not be configured using SMT开发者_运维技巧P server due to some security issues. Is any other way to send an email from remote machine.


The JavaMail section at java.sun.com lists many third party products that plugin to the JavaMail API. Hopefully one of those will fit your needs but I can't be more specific because you don't say what non-SMTP sending options you have open to you.


You could setup Your own SMTP server on remote machine, IMHO, it is better than incorporate it into program directly.


I want to send an email without using SMTP protocol. Is that possible to implement using Java?

  1. With Java you can implement any Layer-5 network protocol.

  2. ALL mail servers using SMTP to receive messages. At any time you have to connect with SMTP to the destination mail server.

If you cannot get out from local network to the Internet with some services you will need a proxy or network tunnel to connect the destination.

0

精彩评论

暂无评论...
验证码 换一张
取 消