Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

I need a simple Windows SMTP client for testing direct delivery of mail to a server, to debug some e-mail problems I am having. I have tried several applications, and found none to be very useful:

Any others, before I resort to typing in SMTP commands by hand?

share|improve this question
I would suggest swaks, but installing ActivePerl probably doesn't count as "simple". – grawity Aug 5 '11 at 17:22

1 Answer

up vote 6 down vote accepted

I have never seen a really good one that lets you see all the information you need. Personally, I need to do this all the time, and you since you will need to enter the specifics anyway, I recommend that you just create a document with the commands in it (copy the stuff below), and save it somewhere for future use. Then when you are ready to test, you open the document, edit in your specifics, and then cut and paste them.

In case you need the commands, here they are:

telnet (host) 25
ehlo (your domain)
mail from:<(originating e-mail address)>
rcpt to:<(recipient e-mail address)>
data (then enter data)
Sample data
. (single period to end e-mail, and send it)
share|improve this answer
1  
+1 for the basics! It's not more difficult than that! – TFM Aug 5 '11 at 14:25
Will do, that's what I figured. I used to do this, and would often typo stuff, and since there was no local echo, I'd be trying to fix the SMTP server when really I had a typo. I like the commmon-sense idea of simply hanging on to the file and pasting it in. Good call. – Brad Aug 5 '11 at 14:26
That is exactly the reason I save the file: I would typo too. Instead, edit the file (I don't save the original file actually), cut-and-paste, bang, bang, bang, line after line. Pretty simple. – KCotreau Aug 5 '11 at 14:34
Good luck, and thank you for marking the answer. I appreciate it. – KCotreau Aug 5 '11 at 14:52
The official syntax for mail/rcpt commands requires addresses to be surrounded by < >s, and without whitespace. For example, mail from:<grawity@example.com>. – grawity Aug 5 '11 at 16:52
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.