High Importance email

VJR

Well-Known Member
Hi MIT,

See if you can add a line of code by making modifications to a copy of the already existing Email VBO.
If not then you might have to write a Code stage to achieve this functionality.
 

Vikas

New Member
You can make a changes to MAPIx VBO as below and send email accordingly:

For High Priority/Importance update the below line in the code
,MAPIMessage.Priority.IMPORTANCE_HIGH at below location :

Using msg As New BPMAPIMessage()
If Not msg.Create(mapi,MAPIMessage.Priority.IMPORTANCE_HIGH) Then Throw New MAPIException( _
"Failed to create message")

For low priority /Importance change HIGH to LOW in above code.
 

Attachments

  • BP.jpg
    159.7 KB · Views: 29
Top