M
MA
Hi,
I am using the Redemption library to create a sent message. I would
like to change the Creation time of the message to the sent date time.
At this moment the creation time is the time message created. Can I
change the CreationTime?
==============================================
RDOFolder folder =
session.GetDefaultFolder(rdoDefaultFolders.olFolderSentMail);
RDOMail msg = folder.Items.Add("IPM.Note");
msg.Sent = true;
msg.Subject = String.Format("Test sent message: {0}", DateTime.Now);
RDORecipient recipient = msg.Recipients.Add("(e-mail address removed)");
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,
MA
I am using the Redemption library to create a sent message. I would
like to change the Creation time of the message to the sent date time.
At this moment the creation time is the time message created. Can I
change the CreationTime?
==============================================
RDOFolder folder =
session.GetDefaultFolder(rdoDefaultFolders.olFolderSentMail);
RDOMail msg = folder.Items.Add("IPM.Note");
msg.Sent = true;
msg.Subject = String.Format("Test sent message: {0}", DateTime.Now);
RDORecipient recipient = msg.Recipients.Add("(e-mail address removed)");
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,
MA