![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
Hello NG,
I want to send Emails with MS Outlook by a plain C dll function. Has someone an example how to control Outlook by API? Or I must translate this VBA Macro I have found in the internet: Private Sub SendMailExample() Dim olApp As Outlook.Application Dim oItem As Outlook.MailItem Set olApp = New Outlook.Application Set oItem = olApp.CreateItem(Outlook.OlItemType.olMailItem) With oItem .To = " .Subject = "Revolution" .Body = "Steve Ballmer takes control on Microsoft!" .Attachments.Add "d:\abc.txt" .ReadReceiptRequested = False .Send End With End Sub How can I translate this code to plain c? I need the datastructures. In which dlls are this functions? Regards Peter |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Send Emails with Outlook by Api | peterfarge | Outlook - General Queries | 2 | August 1st 06 10:15 AM |
Convert double value return by Outlook api to CTime | amit deshpande | Outlook and VBA | 2 | June 27th 06 06:56 AM |
Outlook Account Management API | Rom | Add-ins for Outlook | 2 | June 8th 06 04:54 PM |
Outlook Send/Receive API | Colin Bowern | Outlook and VBA | 0 | June 7th 06 05:36 PM |
Outlook Calendar API | [email protected] | Outlook - General Queries | 2 | March 13th 06 06:11 AM |