Advertisement
Guest User

Sample Mail send using telnet

a guest
Oct 5th, 2015
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.67 KB | None | 0 0
  1. telnet mailtrap.io 2525
  2. Trying 54.85.222.127...
  3. Connected to mailtrap.io.
  4. Escape character is '^]'.
  5. 220 mailtrap.io ESMTP ready
  6. EHLO mailtrap.io
  7. 250-mailtrap.io
  8. 250-SIZE 5242880
  9. 250-PIPELINING
  10. 250-ENHANCEDSTATUSCODES
  11. 250-8BITMIME
  12. 250-DSN
  13. 250-AUTH PLAIN LOGIN CRAM-MD5
  14. 250 STARTTLS
  15. AUTH LOGIN
  16. 334 VXNlcm5hbWU6
  17. NDU5MzRiMmE4MGE3ZTE1YWY=
  18. 334 UGFzc3dvcmQ6
  19. MDFiNzFiZmZmYTIzN2Y=
  20. 235 2.0.0 OK
  21. MAIL FROM: <from@mailtrap.io>
  22. 250 2.1.0 Ok
  23. RCPT TO: <to@mailtrap.io>
  24. 250 2.1.0 Ok
  25. DATA
  26. 354 Go ahead
  27. To: to@mailtrap.io
  28. From: from@mailtrap.io
  29. Subject: Hello world!
  30.  
  31. This is the test message...
  32. .
  33. 250 2.0.0 Ok: queued
  34. quit
  35. 221 2.0.0 Bye
  36. Connection closed by foreign host.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement