Sending Email using custom elements. Inputing password securely.

I’m creating a custom element in my elements.json file to send emails from a worker. I’m trying to have the creator of the bpmn input the username and password within the modeler without the inputed password being shown in plain text.

Is there a way to implement a secured input parameter? The only cleanish way I can see to do this is have it point to a file that contains the password. And that less preferred way is how it is done in the video example https://www.youtube.com/watch?v=I6gznVx2lVU.

Our elements.json file is structured like this:
{
“$schema”: “https://unpkg.com/@camunda/element-templates-json-schema/resources/schema.json”,
“name”: “Send Email”,
“id”: “EmailTask”,
“appliesTo”: [
“bpmn:ServiceTask”
],
“properties”: [
{
“label”: “Implementation Type”,
“type”: “Hidden”,
“value”: “EmailTask”,
“editable”: false,
“binding”: {
“type”: “property”,
“name”: “camunda:class”
}
},
{
“label”: “From”,
“type”: “String”,
“binding”: {
“type”: “camunda:field”,
“name”: “from”,
“expression”: true
},
“constraints”: {
“notEmpty”: true
}
}, …

Hi @Brent_Knickerbocker - it looks like you are working with Camunda 8 but posted in the Camunda 7 category of the forum. Can you confirm you are working with Camunda 8?