- Nhận đường liên kết
- Ứng dụng khác
- Nhận đường liên kết
- Ứng dụng khác
First of all, you need an SMTP Server. These are extremely common and, in fact, I'll provide one for you (mail.hotmail.com).
SMTP: Simple Mail Transfer Protocol
This service runs on port 25 (in most cases) and is used to send outgoing email.
Now, open up the command prompt and telnet to mail.hotmail.com on port 25
(note: to see what you type, type telnet and enter then type in set local_echo)
When yer connected type in (except what's in between *'s; you chose what will go in the []):
Hello is just a handshake with the server.
Mail from: is FROM who you want the email to be.
rcpt to: is who you want the email to go to. under data is what you want sent. the '.' ends data. quit quits.
This is simple isn't it.
SMTP: Simple Mail Transfer Protocol
This service runs on port 25 (in most cases) and is used to send outgoing email.
Now, open up the command prompt and telnet to mail.hotmail.com on port 25
(note: to see what you type, type telnet and enter then type in set local_echo)
telnet smtp.live.com 25
When yer connected type in (except what's in between *'s; you chose what will go in the []):
hello
*wait*
mail from:[whoever]@[whoever.com]
*wait*
rcpt to:[whoever]@[whoever.com]
*wait*
data
*wait*
[write]
[whatever you want]
[in]
[as many]
[lines as wished]
.
*wait*
quit
*wait*
mail from:[whoever]@[whoever.com]
*wait*
rcpt to:[whoever]@[whoever.com]
*wait*
data
*wait*
[write]
[whatever you want]
[in]
[as many]
[lines as wished]
.
*wait*
quit
Hello is just a handshake with the server.
Mail from: is FROM who you want the email to be.
rcpt to: is who you want the email to go to. under data is what you want sent. the '.' ends data. quit quits.
This is simple isn't it.
Nhận xét
Đăng nhận xét