I am building a mail client and I would like to know if my session is able to support all kind of smtp connections... although I don't really know what can I expect from there
I would like to confirm if the following is correct
1 - For SMTP I will only need the host:
props.put("mail.smtp.host", host);
Don't I need user and pass?
2 - For SMTPS I will need to set the tls or is it always true? What about ssl?
I'm a little bit noob about the mail protocols so I would really appreciate some help on this topics.