{ "inputs": { "host": { "connection": { "name": "@parameters('$connections')['shared_sendmail']['connectionId']" } }, "method": "post", "body": { "to": "@{body('Get_response_details')?['responder']};", "subject": "New Starter Request - ID: 0000@{items('Apply_to_each')?['resourceData']?['responseId']}", "text": "
Hi,
\n
\nA new starter request has been logged by @{body('Get_user_profile_(V2)')?['displayName']}.
\n
\nOboarding Details;
\n
\nFirst Name: @{body('Get_response_details')?['r3038db0838f5426cbf4fac546e077393']}
\nLast Name: @{body('Get_response_details')?['r5cfa31a9b0f3495cbbb1ea12316626e8']}
\nDepartment: @{body('Get_response_details')?['rd068ed07e49a4b9fb990e7d54c84eb59']}
\nHardware Required: @{body('Get_response_details')?['r0b5ca0760079400b8302d6508d85d76c']}
", "ishtml": true }, "path": "/v3/mail/send", "authentication": "@parameters('$authentication')" }, "metadata": { "flowSystemMetadata": { "swaggerOperationId": "SendEmailV3" } } }
But the Email prints the multiple choices responses like this: Hardware Required: ["Laptop","Mobile","Headset"]
I am using V3 send Email because I don't want my Email address to be the sender, instead it shows as a generic address.
Can I not have the responses like this in the Email body?
Hardware Required:
Laptop
Mobile
Headset
Thanks