The original Published time: 2008-11-16--from my Baidu article [imported by moving tools]
Website: http://sourceforge.net/projects/sharpwebmail/
After clicking: click on the Download icon
Package Release Date notes/monitor Downloads sharpmimetools Beta 0.6 Beta July 5, 2006 Download sharpwebmail Beta 0 . Beta November 1, 2005 Download
Sharpwebmail Beta This just ...
-----------------------------------------------------------------------------------】
What is:sharpwebmail
Sharpwebmail is a Web application-based, multilingual web mail Service developed in C #. It allows us to use SMTP or IMAP services to complete the sending and receiving of mailboxes. The current version is 0.13.
The controls in Sharpwebmail are made up of several well-known open source projects:
FCKeditor: Not much introduction, open source HTML editor.
dotnetopenmail : An SMTP client component. (It is completely possible to use the System.Web.Mail class when sending mail instead of us.) As for why should we give up System.Web.Mail to send mail? Oh. Go to its website to see the introduction)
Mono : Open source project, let's. NET application can not only run on win, but also run Linux other systems above.
sharpmimetools : Sharpmimetools is a open source MIME Parser/decoder assembly that's written in C #
Installation steps:
Extract it out. Create a virtual directory for your application.
Modify the Web. config file
<login
title= "[login title] Configuration setting"
Mode= "1"
Append= "CNZC"
serverselection= "Manual"
Enablequerystringlogin= "false"
/>mode:
1-> full e-mail required for login
2-> any username is allowed
3-> any username was allowed but the append
String is added to supplied username
It has three modes of landing. One is to login in the form of email, one is logged in as an account number, and a login username must be append support user
<servers>
<server
Name= "Default POP3 Server"
regexp= "*"
Protocol= "POP3"
Host= "Pop3.163.com"
Port= "110"
/>
</servers
<servers>
<server
Name= "Default SMTP Server"
regexp= "*"
Protocol= "SMTP"
Host= "Smtp.163.com"
Port= "25"
/>
</servers>
I'm using a 163 mail system. Please note that host fills in the content. Be sure to write it all (with the POP3 prefix). At first I was filling in 163.com. And then I found out that I couldn't log in and find out the code.
As for how you want to use them. For example, to introduce it into our own projects. This gives you the ability to send and receive mail.
Sharpwebmail e-mail management system open source download and use method