Use the 163 mailbox to receive ASP. NET user feedback and asp.net user feedback
This section describes how to correctly set the Web. config file to receive user feedback emails.
The Web. config file settings in the general tutorial will not be introduced to domestic mailboxes, but will only introduce the Default Configuration:
<system.net> <mailSettings> <smtp deliveryMethod="Network" from="Name <you@example.com>"> <network host="smtp.example.com" /> </smtp> </mailSettings> </system.net>
However, if you are using mailbox 163, This is not successful, because mailbox 163 requires not only configuring specific ports, but also using SSL encryption. The following configuration is required:
<system.net> <mailSettings> <smtp deliveryMethod="Network" from="YourName < <a target=_blank href="mailto:you@example. com">you@example. com</a> >"> <network enableSsl="true" host="smtp.163.com" password="YourPassword" userName="YourName" port="25"/> </smtp> </mailSettings> </system.net>
Change "you @ example. com" to your email address. The values in password and userName are the passwords and accounts of your email address. In this way, you can receive user feedback in the 163 mailbox.
Also attached a link, commonly used mailbox server port: http://blog.sina.com.cn/s/blog_6e85b10501012kyv.html
Zookeeper