N
Nithin
HI all,
I have written a plugin to run on Outlook 2003/XP/2000 that will change
the message class of every new mail that arrives to teh mail box.
Changing of message class is crucial for me to apply a custom form for
new mails I recieve. In the plug-in i have incorporated jthe following
code
"newMail" is any new message that reaches inbox and is of type
"Mailitem"
newMail.MessageClass = "IPM.Note.NewClass";
newMail.Save();
The above code works fine for all the type of mail accounts except for
POP3 accounts(I have tested this with GMAIL Pop3 and yahoo Pop3).
newMail.Save(); throws following exception
"You don't have appropriate permission to perform this operation".
Also, I tried editing a Message of POP3 acount and Saving the changes
for which the Outlook prompted the following Message
"Your changes could not be saved because you don't have permission to
modify some or all Of the items in this folder. Do you want to save a
copy of this item in the default folder for the item?"
Please , help me out to overcome this issue.
Thanks In advance
Nithin
I have written a plugin to run on Outlook 2003/XP/2000 that will change
the message class of every new mail that arrives to teh mail box.
Changing of message class is crucial for me to apply a custom form for
new mails I recieve. In the plug-in i have incorporated jthe following
code
"newMail" is any new message that reaches inbox and is of type
"Mailitem"
newMail.MessageClass = "IPM.Note.NewClass";
newMail.Save();
The above code works fine for all the type of mail accounts except for
POP3 accounts(I have tested this with GMAIL Pop3 and yahoo Pop3).
newMail.Save(); throws following exception
"You don't have appropriate permission to perform this operation".
Also, I tried editing a Message of POP3 acount and Saving the changes
for which the Outlook prompted the following Message
"Your changes could not be saved because you don't have permission to
modify some or all Of the items in this folder. Do you want to save a
copy of this item in the default folder for the item?"
Please , help me out to overcome this issue.
Thanks In advance
Nithin