5 Topics

Member Avatar for
Member Avatar for OsaMasw

Hello guys Am not fimiliar with windows server 2008 enviroment but I learned few things last days, I want to create mail service to send and recieve messages localy, between two or three computers just for learing. How can i achieve that ? Am using windows server 2008 Tried hmailServer …

Member Avatar for kc0arf
0
271
Member Avatar for vipulasri.2007

Is there any open source code project of **WEB MAIL CLIENT** that i can use straight away by doing some of the modifications in its ui .I just want to configure **imap or pop3 or smtp** settings in that and i should start recieving my mails from the specified account.

Member Avatar for pritaeas
0
190
Member Avatar for Armanious

I'm trying to send an e-mail through a C# program. It works until it sends it, then the operation times out. This is what I have: [CODE]{ try { SmtpClient client = new SmtpClient("smtp.gmail.com"); client.UseDefaultCredentials = false; client.EnableSsl = true; client.Port = 465; client.Credentials = new NetworkCredential("mygmailacc@gmail.com", "mypassword"); MailAddress from …

Member Avatar for Armanious
0
223
Member Avatar for rcavezza

I'm using these libraries for an email application I'm building. [CODE=php]$storage = new Zend_Mail_Storage_Imap($imap); if (strpos($storage->getMessage($i),'chocolate') !== FALSE ) { //Move to chocolate folder here } [/CODE] Also, is there a way to put incoming emails from this sender to automatically go into the chocolate folder from now on? ...similar …

Member Avatar for rcavezza
0
312
Member Avatar for sfrider0

I just need to be able to get and read the text in my gmail inbox using c#. I've googled it but mostly all I found was how to send, which I already know how, email. I just want to connect to my own account. I don't need to get …

Member Avatar for sfrider0
0
202

The End.