Can I access my webmail programmatically?

Discussion in 'Classic ASP' started by digitalpho1, Jan 31, 2005.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. I would like to do some validation of customer receipts by post-processing e-mail messages in one of my POP accounts. Is this possible?
     
  2. Bruce

    Bruce DiscountASP.NET Staff

    Do you mean you want to pull email down from a mailbox using a web application?

    You can use one of the POP component we offer.

    Bruce

    DiscountASP.NET
    www.DiscountASP.NET
     
  3. Yes, that's what I'd like to do. Thanks Bruce, I'll check into it.
     
  4. I want to do the same thing: read email responses to
    subscribe confirmation emails, but I'm not sure where to
    find the POP components, nor how to implement them.


    Help![​IMG]


    Bill
     
  5. Takeshi Eto

    Takeshi Eto DiscountASP.NET Staff

    We have some sample code in our knowledge base at http://kb.discountasp.net - check out the components section. You can alsovisit the component maker's site and they should have more information on their components.

    DiscountASP.NET
    http://www.DiscountASP.NET
     
  6. I tried the suggested code in the KB, but got an
    error on the literal function:

    Compiler Error Message: BC30002: Type 'POP3' is not defined.






    Code:
    Line 2:  Dim pop As New POP3("127.0.0.1", ...

    Bill
     
  7. Bruce

    Bruce DiscountASP.NET Staff

  8. > can you post the whole code?

    It's all straight out of the KB article.
    The code doesn't get past that first line,
    with the POP3( function not found.

    Bill
     
  9. Bruce

    Bruce DiscountASP.NET Staff

    I think you didn't copy the whole code snippet.

    You are missing these lines (The line which is erroring out should NOT be line 2)

    <%@ Assembly name='aspNetPOP3, Version=2.0.0.0, Culture=neutral, PublicKeyToken=bc571e8da1c1f543' %>
    <!--- The above line can be omitted, if you load the assembly in the application web.config file. See KB article 10239 for details -->
    <%@ Import Namespace='aspNetPOP3'%>

    Bruce

    DiscountASP.NET
    www.DiscountASP.NET
     
  10. > I think you didn't copy the whole code snippet.

    I can't find the sample code that I'd copied, but
    the KB I did findhas setup calls that weren't in the
    other version. I'll try that version. Thanks.

    Bill
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page