CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Sep 2001
    Posts
    8

    Email without MAPI

    Hi.
    Is there a way of sending emails within a vb
    programm without using MAPI?

    Thank you


  2. #2

    Re: Email without MAPI

    1) CDONTS -> u must have intstalled and option pack 4 with smtp service enabled.

    2) talking directly with a smtp server... using wsock...

    3) using external Component as jmail


    <center>
    <HR width=80%>
    <img src='http://web.tiscali.it/bertaplanet/im...ertaplanet.gif'>
    </center>

  3. #3
    Join Date
    Apr 2000
    Posts
    737

    Re: Email without MAPI

    use POP3 & SMTP. check out http://vblib.virtualave.net, there is 2 class vbPop3 & vbSMTP which might help.



    HTH

    cksiow
    http://vblib.virtualave.net - share our codes

  4. #4
    Join Date
    Aug 2001
    Location
    New York, USA
    Posts
    169

    Re: Email without MAPI

    use POP3 and SMTP through WINSOCK. Check out the following sites:

    "Simple Mail Sender" (SMTP)
    http://www.vbip.com/winsock/winsock_uucode_02.asp

    "Simple Mail Checker" (POP3)
    http://www.vbip.com/winsock/winsock_uucode_03.asp

    Both of those projects/samples work. You just have to enter a correct POP3/SMTP address. (also, add a WINSOCK component)

    Follow the instructions.

    [email protected]

  5. #5
    Join Date
    Oct 2000
    Posts
    34

    Re: Email without MAPI

    Use CDO 1.x for Windows 9x. Take a look:
    http://support.microsoft.com/support...n_SRCH&SPR=VBB


Posting Permissions

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





Click Here to Expand Forum to Full Width

Featured