![]() |
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
|
|||
|
|||
![]()
Hi,
I am using the Redemption to create a message. I need to add the user defined fields to the message. I know the Outlook.MaiItem has the UserProperties which allow to add field and optionally attach to the folder. However, UserProperties not available in Redemption. How can I access the UserProperties from the RDOMail? -------------------------------------------- // Get the RDOFolder session.MAPIOBJECT = olApp.Session.MAPIOBJECT; RDOFolder rdoFolder = session.GetFolderFromPath(@"\\Bob Builder \Inbox"); // Create the message RDOMail msg = rdoFolder.Items.Add("IPM.Note.CRM"); msg.Sent = true; msg.Subject = String.Format("Test sent message: {0}", DateTime.Now); RDORecipient recipient = "); recipient.Resolve(false, null); msg.Sender = session.CurrentUser; msg.SentOn = Convert.ToDateTime("2007/09/10", System.Globalization.CultureInfo.CurrentCulture); msg.Body = "Test message body"; msg.Save(); --------------------------------------------- Thanks for looking at the issue. Regards, MA |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
More on UserProperties | Steve | Add-ins for Outlook | 13 | November 20th 07 11:12 PM |
UserProperties Icon | Anyone for Coffee? | Add-ins for Outlook | 2 | May 1st 07 09:17 PM |
MailItem UserProperties in OWA (Outlook Web Access) | [email protected] | Outlook and VBA | 5 | April 23rd 07 11:18 AM |
UserProperties | j | Add-ins for Outlook | 0 | February 12th 07 07:06 AM |
VB.net Cannot add userproperties | Ben | Add-ins for Outlook | 2 | February 24th 06 10:32 AM |