This article describes how to use the SMTP server and POP3 Service and applications developed by. net.ProgramTo send anonymous emails.
Prerequisites:
1. Create a POP3 Service
2. Create an SMTP server
Steps:
1. add and delete Windows components,
A) POP3 Service: Select "email service" and select all in details.
B) SMTP Service: There is an SMTP service in IIS in "Application Server". Check
2. After adding, configure the SMTP server:
A) Open IIS and right-click "Default SMTP virtual server"-> properties to change the IP address to your actual IP address.
B) Select the "access" tab in the "SMTP server" attribute and click "relay" to add your IP address.
3. Configure the POP3 Service
A). Create a mail domain
Click Start> Administrative Tools> POP3 Service. The POP3 Service Console window is displayed. Select the POP3 service in the left column and click "new domain" in the right column. The "add domain" dialog box is displayed. Then, enter the Domain Name of the email server in the "Domain Name" column, that is, the part after the email address "@", such as "hotmail.com", and click "OK.
B). Create a user email address.
Select the newly created "hotmail.com" domain and click "add mailbox" in the right column. The add mailbox dialog box is displayed. In the "mailbox name" column, enter the email user name and set the user password, click "OK" to create the mailbox.
After the configuration is complete, add a. Net project. The steps are as follows:CodeSee
SMTP http://hqt.cnblogs.com/archive/2005/10/19/257991.html using. Net to send email
The key is that the input smtpserver parameter must be the IP address of the local machine, and the user name and password are the mailbox just created.
The secret of anonymity is here,
You can create any domain and use a dispensable account to send emails to anyone.
I used. Net to send Hotmail mail http://hqt.cnblogs.com/archive/2005/10/19/258004.html in the previous article.
Hotmail does not really solve the problem of sending emails, but it can be easily implemented with this solution.
It's really amazing ~~