Skip to content

Latest commit

 

History

History
18 lines (9 loc) · 332 Bytes

README.md

File metadata and controls

18 lines (9 loc) · 332 Bytes

smtp-email

  • Create base64 auth credentials:

echo -n "\000myemail@mydomain.com\000myholypassword" | base64

  • Connect to smtp server:

openssl s_client -starttls smtp -connect smtp.anymailserver.com:587 -crlf

  • Introduce or start new session

helo myhostname

  • Authenticate your user

auth plain base64authcredential