SmtpClient c = new SmtpClient( server ); c.from( sender ); c.to( recipient ); PrintStream p = c .startMessage(); p.println( "" ); p.println( "Subject: Test of SMTP Server" ); p.println( "" ); p.println( "Hi" ); c.closeServer();SMTP is so simple you could roll your own code to send mail with it using a URLConnection.
SMTP is a kludgy anachronism. It lives on simply because everyone uses it. One of its major failings is a lack of authentication protocol. It has no official logon mechanism to prevent spammers from using your mail server to dispense SPAM. JavaMail still supports it.
Mail servers use various ad hoc schemes to protect themselves from unauthorised use:
RFC 5321 describes the SMTP send mail protocol. You would use this to implement SendMail at the socket level with HELO commands and numbered responses.
If you talk to a mailserver, you can send mail to anyone in that domain without identifying yourself, however, if you want the mailserver to relay mail for you outside its domain, you need some way of identifying yourself. Mailservers drop off relayed mail using that same SMTP protocol.
This page is posted |
http://mindprod.com/jgloss/smtp.html | |
Optional Replicator mirror
|
J:\mindprod\jgloss\smtp.html | |
Please read the feedback from other visitors,
or send your own feedback about the site. Contact Roedy. Please feel free to link to this page without explicit permission. | ||
Canadian
Mind
Products
IP:[65.110.21.43] Your face IP:[3.147.47.177] |
| |
Feedback |
You are visitor number | |