How to integrate dropdown list using BP

Hamza_Uniper

New Member
I would like to send an email and this email should contain a column that gives me a "dropdown list" so that the receiver of the email can choose from the options and reply back.
How can this be achieved by using blue prism?
 

ewilson

Member
You've got one major issue here. Do you know that the receiver of the email will have an email client that is configured to interpret/display HTML? If so, you can use the MS Outlook VBO to create and send an email using HTML. Then it's just a matter of you figuring out the proper HTML to display the list.

Example:
HTML:
<label for="cars">Choose a car:</label>

<select name="cars" id="cars">
  <option value="volvo">Volvo</option>
  <option value="saab">Saab</option>
  <option value="mercedes">Mercedes</option>
  <option value="audi">Audi</option>
</select>
 
Top