cancel
Showing results for 
Search instead for 
Did you mean: 

Outlook VBO - Forward

WillemNel
Level 3
Good Day 

I'm still new to the developing on blue prism.
I need to add to the subject line when using the forward option on the MS outlook Email VBO.
The only inputs is Entry ID, To, CC, Bcc and Message and no Subject?
How can I add data items to the subject line when forwarding the email in  process?

Some help will be much appreciated.

Thanks


------------------------------
Willem Nel
------------------------------
2 REPLIES 2

AmiBarrett
Level 12
You'll need to modify the code stage to make this work.

At the bottom, where it invokes mail.HTMLBody, add this before it:
if Subject <> "" Then
	mail.Subject = Subject
end if​

You'll also need to add a text input called Subject.

------------------------------
Ami Barrett
Lead RPA Software Developer
Solai & Cameron
Richardson, TX
------------------------------

Solved

Hi Ami

I was able to solve.
Did not copy the code correct.

Thanks a lot.

------------------------------
Willem Nel
------------------------------