cancel
Showing results for 
Search instead for 
Did you mean: 

MS Out look VBO Classification

HarishM2
Level 6
HI,

I'm trying to send an email with Some Classification using SMTP. BUt BOt not able to send with SMTP so I'm trying send  using SMTp, How can I use the classification in MS out look?


When I try to send an email it is triggering some pop up to select the classification.

------------------------------
Harish
RPA Developer
------------------------------
8 REPLIES 8

lookman
Staff
Staff
Hi Harish.

What version of BP are you using?

jack

------------------------------
Jack Look
Sr Product Consultant
Blue Prism
------------------------------

HI Jack,

I'm using 6.6 version
 And Added below code in the send action in SMTP VBO, But it is still not working

mail.ItemProperties.Add([OrgName],OlUserPropertyType.olText) = [Classification]

------------------------------
Harish
RPA Developer
------------------------------

Hi Harish.

Thanks for the quick reply. I have not run into this issue but did some research and found this:

The standard MS Outlook VBO does not support the classification of emails. However, it is possible to customize the outlook VBO to allow the classification of emails.

To customise the VBO, additional code will need to be added to the MS Outlook VBO's 'Send Email' action:

The different code options for the existing email classifications and code options are as follows:

Sensitivity Code
Normal OlSensitivity.olNormal
Personal OlSensitivity.olPersonal
Private OlSensitivity.olPrivate
Confidential OlSensitivity.olConfidential

 

Hopefully this helps.

jack

------------------------------
Jack Look
Sr Product Consultant
Blue Prism
------------------------------

HI Jack,

Thanks for your response, I tried that code its not working , May be It's because I'm using Titus classification. 

There is some thing I misstated above, I added below code in MS Out look VBO

mail.ItemProperties.Add([OrgName],OlUserPropertyType.olText) = [Classification]

------------------------------
Harish
RPA Developer
------------------------------

I found that in the new version of BP 6.8 (soon to be released) this function is added to the product.

15693.png

Stay tuned for the release in the next weeks.

------------------------------
Luis Lopez
Customer Support Engineer English and Spanish
Blue Prism Ltd
------------------------------

Hi Lopez,

Thanks for that information, But looks like, It only works for  default outlook classification. What about 3rd party add on in Outlook such as Titus?


------------------------------
Harish
RPA Developer
------------------------------

Have you tried to implement the solution mentioned here

https://stackoverflow.com/questions/49128979/sending-email-and-workaround-pop-up-classification-titus



------------------------------
Gopal Bhaire
Analyst
Accenture
------------------------------

Hi Gopal,

  I tried that before, but lot of methods are deprecated so, BP is not liking that code. SO tried below code 


mail.ItemProperties.Add([OrgName],OlUserPropertyType.olText) = [Classification]

------------------------------
Harish
RPA Developer
------------------------------