Retriveing Mail using ASP

Ask a Question related to ASP Components, Design and Development.

  1. #1

    Default Retriveing Mail using ASP

    Hi Friends,
    I would like to know if ASP provides an option to
    retrieve mail from pop mail accounts if we give mailserver,username and
    password as parameters.Any help regarding this would be greately
    appreciated.


    Surya Guest

  2. Similar Questions and Discussions

    1. Mail component to retrieve mail from Hotmail, Yahoo, gmail..etc?
      I am not sure these web based mail support POP3 or IMAP4. Is there any mail component out there that can retrieve mail from these services? --...
    2. Geting Mail Messages From IMAP to UNIX mail file ???
      I need a solution to get messages from IMAP server transfered over to my server. Once the transfer complete I want to be able to read them. And one...
    3. #25357 [Com]: Mail() function is loosing cahracters when sending mail
      ID: 25357 Comment by: dj_canard at yahoo dot com Reported By: pjsmith at microtech dot co dot gg Status: Bogus...
    4. #25357 [NEW]: Mail() function is loosing cahracters when sending mail
      From: pjsmith at microtech dot co dot gg Operating system: Windows 2003, IIS, ISAPI PHP version: 4.3.3 PHP Bug Type: *Mail...
    5. #25195 [NEW]: Warning: mail(): Could not execute mail delivery program ...
      From: mhawkins at ukeu dot com Operating system: Solaris 8 PHP version: Irrelevant PHP Bug Type: Mail related Bug...
  3. #2

    Default Re: Retriveing Mail using ASP

    Hi John,
    Thanks for your reply.I found dalun's components to be useful.But,i
    would like to develop my
    own component for accessing mail rather than using thirdparty components.I
    would like to
    know if ASP itself has facilities which could be used to create our own
    component as such to
    access mail from pop mail servers.If so,i would be happy if you could let me
    know if you some some
    sample code or tell me of sites which have tutorials related to accessing
    mail from ASP.



    "John Smith" <swordfish@sd163.net> wrote in message
    news:OJ3uxoXXDHA.2384@TK2MSFTNGP10.phx.gbl...
    > You can use dalun's POP3 or IMAP4 webmail,
    >
    > [url]http://www.dalun.com/ftp/pop3.zip[/url]
    > [url]http://www.dalun.com/ftp/imap.zip[/url]
    >
    > sources included.
    >
    > "Surya" <SalemSurya@yahoo.com> wrote in message
    > news:%23VTUeQWXDHA.2312@TK2MSFTNGP10.phx.gbl...
    > > Hi Friends,
    > > I would like to know if ASP provides an option to
    > > retrieve mail from pop mail accounts if we give mailserver,username and
    > > password as parameters.Any help regarding this would be greately
    > > appreciated.
    > >
    > >
    >
    >

    Surya Guest

  4. #3

    Default Re: Retriveing Mail using ASP

    > But,i would like to develop my own component
    > for accessing mail rather than using thirdparty
    > components.
    POP3 proptocol is pretty simple at a basic level and a
    quick search of the net will give you examples and
    tutorials on how you use it. Then all you need is a way
    of using sockets to talk TCP/IP to the mail server. If
    you are using VB then it comes with a Winsock control, you
    could also try using the winsock APIs but they are a bit
    more hard-core. Easiests by far is if you are using
    vb.net.
    > I would like to know if ASP itself has facilities
    > which could be used to create our own component as
    > such to access mail from pop mail servers.
    ASP has no built-in mechanism to retrieve mail from a
    mailserver, not can it talk over sockets. You need a
    component of some sort. You might already have something
    on the server that will let you do it such as the MAPI
    objects or CDO or something.
    Adrian Forbes - MVP Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139