Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Net::SMTP in the 21st Century

by daxim (Curate)
on Nov 18, 2013 at 16:01 UTC ( [id://1063134]=note: print w/replies, xml ) Need Help??


in reply to Net::SMTP in the 21st Century

Don't bother starting to automate with Perl (Email::Sender is super sweet) until you can get a successful SMTP session manually. This decade's best practice: encryption, authentication, submission port. Try variations of this:
$ echo '\000mysmtpusername\000mysmtppassword' | openssl base64
XDAwMG15c210cHVzZXJuYW1lXDAwMG15c210cHBhc3N3b3JkCg==

$ # ↑↑↑↑ copy this to clipboard

$ openssl s_client -connect mailhost.faraway.example.net:587 -starttls smtp

ehlo hostname.here.example.org
auth login XDAwMG15c210cHVzZXJuYW1lXDAwMG15c210cHBhc3N3b3JkCg==
and you know the rest:
mail from: <samwyse@host.here.example.org>
rcpt to: <fnord@example.com>
data
⋮

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1063134]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (2)
As of 2024-04-20 03:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found