Check Email

  • Thread starter Thread starter Ajit
  • Start date Start date
A

Ajit

Is there anyway i can download/check EMail and/or Emails with attachments
Using VB.Net

The application i am working on need to download attachments and update
database
 
Is there anyway i can download/check EMail and/or Emails with attachments
Using VB.Net

A) Check mail from where? Exchange? A POP3/IMAP server? Lotus Notes? Etc...?

B) The .NET framework is pretty weak when it comes to mail. There are
probably free components out there to access POP3 servers (do a Google
search). I personally have used the Dart Mail tool for .NET and am very
happy with it.
 
* "Ajit said:
Is there anyway i can download/check EMail and/or Emails with attachments
Using VB.Net

My mailing FAQ:

Namespace 'System.Web.Mail' (requires reference to "System.Web.dll"),
FAQ: <URL:http://www.systemwebmail.net/>.

CDO/Exchange:

Support Policy for Microsoft Exchange APIs with .NET Framework Applications
<URL:http://support.microsoft.com/?scid=kb;EN-US;813349>

HOW TO: Retrieve Messages Using CDOEX and ADO in Visual C#
<URL:http://support.microsoft.com/?scid=kb;EN-US;310206>

Self-made:

<URL:http://www.codeproject.com/csharp/karavaev_denis.asp>
<URL:http://www.codeproject.com/csharp/popapp.asp>
<URL:http://www.codeproject.com/csharp/pop3client.asp>

SMTP and POP3 Mail Server
<URL:http://www.codeproject.com/csharp/smtppop3mailserver.asp>

Commercial:

<URL:http://www.abderaware.com/mail/>
 
Jeff,

with Dart Mail tool can we seemlessly download attachments with our user
interaction ?
 
with Dart Mail tool can we seemlessly download attachments with our user
interaction ?

Attachments are part of the message, so when you retrieve the message,
you're also retrieving the attachments. I'm not exactly sure what you're
asking.
 
I understand that attachment is a part of the message
but is there any method that allows us(programmers) to save attachment on
the disk.
(or user need to manually click on the attachment and save it)
 
I understand that attachment is a part of the message
but is there any method that allows us(programmers) to save attachment on
the disk.
(or user need to manually click on the attachment and save it)

You can access the attachments programmatically and do whatever you want
with them.
 
Back
Top