![]() |
| 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. |
|
|||||||
| Tags: 2000, body, empty, mail, outlook, problem, sending |
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
I am working on an Outlook COM Add-in and I use a custom form for
sending emails. On Outlook Xp and 2003, everything works fine, but on Outlook 2000, every email I send has the body empty. Here is the script code for the form item send function: Function Item_Send() ' On Error Resume Next Dim srvObject Set srvObject = CreateObject("OlkMsgPlugin.PIMMessageSender") if srvObject is nothing then MsgBox "Unable to create IRGENT Messaging Manager!" Item_Send = false else srvObject.Body = Item.Body srvObject.Subject = Item.Subject for i=1 to item.Recipients.Count set recipient = item.recipients.Item(i) recipient.Resolve If recipient.Resolved Then srvObject.CheckRecipient recipient.Address, recipient.Name end if next srvObject.Send Set srvObject = Nothing Item.Delete Item_Send = false end if End Function I have checked and Item.Body is empty on Outlook2000. Is this an Olk2000 issue or I have made a mistake? If body is not the right attribute to use, then what is it? Thanks, Bogdan Poplauschi SoftVision |
| Ads |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to get the mail body format of the outlook 2000 | Laxman | Add-ins for Outlook | 4 | June 30th 06 06:05 PM |
| outlook express 6 mail sending problem | appu | Outlook Express | 2 | May 26th 06 04:29 PM |
| Outlook Express Sending Mail PROBLEM | Moir | Outlook Express | 4 | February 26th 06 01:51 AM |
| Outlook Express Sending mail PROBLEM | Moir | Outlook Express | 9 | February 24th 06 12:33 PM |
| Outlook Express Sending mail PROBLEM! | Moir | Outlook Express | 4 | February 24th 06 12:47 AM |