PreviousIndexNext Internet Link Exchange

E-Mail: Technical Aspects

The Internet protocol used in the transfer of e-mail is SMTP, or Simple Mail Transfer Protocol. SMTP is usually accessed on port 25 of your Internet provider's SMTP server. If you manually telnet to port 25 of an SMTP server, an SMTP session is initialized. In such a session, the following commands can be used:


Following is a sample SMTP session. In the example, johnr@data.korg.net is the sender. The recipient is maryk@avon.com. Bolded data is entered by the sender.

220 mailhub.korg.net ESMTP (Sendmail 8.7.4/8.6.12 ready at Mon, 1 Jul
1996 06:24:36 -0400 (EDT)
helo data.korg.net
250 mailhub.korg.net Hello data.korg.net [127.0.0.1], pleased to meet you
mail from: johnr@data.korg.net
250 johnr@data.korg.net... Sender ok
rcpt to: maryk@avon.com
250 Recipient ok
data
354 Enter mail, end with "." on a line by itself
From: Johnr@data.korg.net (John Rinaldo)
To: maryk@avon.com (Mary Kay)
Subject: New cosmetics product

Please send me any info about your new cosmetics line.  Thanks!
.
250 AAA25285 Message accepted for delivery
221 mailhub.korg.net closing connection

Since the above information might seem confusing, you might want to just ignore it. This is what e-mail applications already know. Such programs use these commands when connected to your SMTP server to send your mail.
PreviousIndexNext Internet Link Exchange