What is the difference between smtp server and smtp protocol? Can I also use smtp protocol to send email to non smtp server? Please bear with me, I'm new to these terminologies and trying to setup automated email for some job via Backend java code.
Asked
Active
Viewed 652 times
2 Answers
1
The SMTP server is a computer that is capable of serving content through SMTP protocol.
The protocol itself is the way of communication, specialized for funtionality related to e-mail standards.
For sending automated e-mails, you definitely want to set up your SMTP server, but your target would be an e-mail address.
But in order for you to achieve, you need a solid understanding of the underlying theories, so I recommend reading up in the matter at least on Wikipedia.

Zoltán Schmidt
- 1,286
- 2
- 28
- 48
0
SMTP = Simple Mail Transfer Protocol
SMTP Server = a computer that is running smtp
In order to send emails you need a server.
If you want to send emails from your backend application you may :
- Use 3d party services via api (i.e mailjet)
- Use a public smtp server (i.e Gmail)
- create an SMTP server (a more complex procedure IIS6 on windows, SquirrelMail on linux)

Yan
- 433
- 2
- 16