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..
Send mail using Internet Explorer
Collapse
X
-
Tags: None
-
Have you tried using the CDO library? you wont use IE but it helps...Originally posted by anjosoviajhelo 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..
[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