D
Dinesh
hello everybody,
iam using this code to read the email header.
Outlook.MailItem mail;
mail = (Outlook.MailItem)thisexplo.Selection[1];
string ID = mail.EntryID;
Redemption.RDOSession sess = new Redemption.RDOSession();
sess.MAPIOBJECT = mail.Session.MAPIOBJECT;
Redemption.RDOMail rMail = sess.GetMessageFromID(ID, null, null);
MessageBox.Show("header info " +
rMail.get_Fields(0x007D001E).ToString));
This is working perfectly and iam getting the header. In this iam display it
in the message box. i want display 2 lines from the header below the email
which should while i click the email to read in the outlook express. so it
possible the display in below the mail instantly ?. if so help with the idea
how to do it in c#.
thank you.
iam using this code to read the email header.
Outlook.MailItem mail;
mail = (Outlook.MailItem)thisexplo.Selection[1];
string ID = mail.EntryID;
Redemption.RDOSession sess = new Redemption.RDOSession();
sess.MAPIOBJECT = mail.Session.MAPIOBJECT;
Redemption.RDOMail rMail = sess.GetMessageFromID(ID, null, null);
MessageBox.Show("header info " +
rMail.get_Fields(0x007D001E).ToString));
This is working perfectly and iam getting the header. In this iam display it
in the message box. i want display 2 lines from the header below the email
which should while i click the email to read in the outlook express. so it
possible the display in below the mail instantly ?. if so help with the idea
how to do it in c#.
thank you.