Tagged Questions
The smtps tag has no wiki summary.
1
vote
2answers
442 views
Error in sending mail through smtps
I am getting the below exception while connecting to my mailserver while executing the below line
transport.connect("test.mailserver.com",465,"test.user@test.com","testpwd");
...
0
votes
2answers
65 views
How to configure Spring JavaMailSender for SES using SMTP?
We are trying to configure Spring JavaMailSender to work with Amazon's SES service using SMTP, but we are getting this error:
javax.mail.MessagingException: Could not connect to SMTP host: ...
0
votes
2answers
107 views
Java SMTPS untrusted certificate
When sending mail with SMTPS, I am setting the following property, so I am expecting certificate validation to be skipped. But my untrusted certificate is causing an exception.
...
0
votes
1answer
159 views
Is there any difference in using smtps instead of smtp?
Or is it transparent for the application layer ?
I ask this because I'm trying to connect to a smtps and no success
(smtp is working fine)
-3
votes
3answers
1k views
HOW to use OpenSSL in C to send email (via gmail) using SMPTS (TLS)
Writing in C/C++ (not COM C#)
As a follow on from these questions:
http://www.developerweb.net/forum/showthread.php?t=3477
http://stackoverflow.com/questions/440762/openssl-command-line-troubles
...