You can send the mail using Telnet as well. Please follow the below mentioned procedure:
1. The first thing to do is to open a connection from your computer to your mail server.
2. telnet mail.domain.ext 25
3. You will then need to declare where you are sending the email from:
4. HELO local.domain.name
5. Now give your email address:
6. MAIL FROM: [email protected]
7. Now give the recipients address:
8. RCPT TO: [email protected]
9. To start composing the message issue the command DATA
10.If you want a subject for your email type Subjectype subject here- then press enter twice
11.You may now proceed to type the body of your message (e.g. hello [email protected] from [email protected])
12.To tell the mail server that you have completed the message enter a single "." on a line on it's own.
13. You can close the connection by issuing the QUIT command.
1. The first thing to do is to open a connection from your computer to your mail server.
2. telnet mail.domain.ext 25
3. You will then need to declare where you are sending the email from:
4. HELO local.domain.name
5. Now give your email address:
6. MAIL FROM: [email protected]
7. Now give the recipients address:
8. RCPT TO: [email protected]
9. To start composing the message issue the command DATA
10.If you want a subject for your email type Subjectype subject here- then press enter twice
11.You may now proceed to type the body of your message (e.g. hello [email protected] from [email protected])
12.To tell the mail server that you have completed the message enter a single "." on a line on it's own.
13. You can close the connection by issuing the QUIT command.
Comment