Headline:
Click on an Instance, and send the owner a message.
Description:
Click on an Instance, and send the owner a message. Or, perhaps click the owner and then have an Action that allows you to send them a message.
Example/Use case(s):
Click on an Instance, and send the owner a message. Or, perhaps click the owner and then have an Action that allows you to send them a message.
Hey @Wittling_Mark_CCI-At . An idea of how this can be accomplished now is using an Email Task type with an Operational Workflow. You can add the inputs for text body and/or subject as well. Then for the email, use the Morpheus variable:
<%=instance.createdByEmail%>
This would allow you to run the workflow from their instance page, input your message, and send directly from the Morpheus UI
Cool. So I created the operational workflow, and the Python Task to send the email. I have the variable for the createdByEmail.
dest = morpheus[“instance”][“createdByEmail”]
What is the format to grab the input fields I added to the operational workflow? Is it something like:
subject = morpheus[“input”][“inputfieldname”]?
So even simpler than that, we have an email task type that using the smtp settings of your morpheus. You can even inject HTML formatting in it if you’d like.