Send mail using Internet Explorer

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • anjosoviaj
    New Member
    • Jan 2008
    • 1

    Send mail using Internet Explorer

    helo am doing a project based on a security webcam wich takes pictures and sends it to mail address..i plan to implement it using VB6.. can anyone pls help with the coding for sending mail..using internet xplorer..
  • kadghar
    Recognized Expert Top Contributor
    • Apr 2007
    • 1302

    #2
    Originally posted by anjosoviaj
    helo am doing a project based on a security webcam wich takes pictures and sends it to mail address..i plan to implement it using VB6.. can anyone pls help with the coding for sending mail..using internet xplorer..
    Have you tried using the CDO library? you wont use IE but it helps...

    [CODE=vb]dim ob1 as object
    set obj1 = createobject("m api.session")[/CODE]
    and use LOGON, OUTPUT.MESSAGES (.ADD , .SUBJECT, .TEXT, .RECIPIENTS.ADD , .RECIPIENTS.NAM E, etc)

    Give it a try, it's not that hard, and write again if you have any more specific doubt.

    If you want to use IE try with

    [CODE=vb]dim obj1 as object
    set obj1 = createobject("i nternetexplorer .application")[/CODE]

    and use NAVIGATE, etc...

    but you'll have to login using the page's format, and... well, it's doable, but if i had no good reason to use it, i'd use CDO or some other method (there's a nice activeX form chilkat, but you have to download it and all that stuff)

    HTH

    Comment

    • Killer42
      Recognized Expert Expert
      • Oct 2006
      • 8429

      #3
      Ignore me - I'm just registering an interest in this thread so I can see what happens. :)

      Comment

      Working...