Re: Forms Pro email template color changes when used in a flow
Hi,
The problem is only occuring when flow sends the email. If i manually send it, it works fine.
The colors are correct on the template but the email receiver gets another color.
I don't think browser cache has anything to do with it, it is an automatic procedure.
If it helpd this is the code of the final step in the flow
{
"inputs": {
"host": {
"connection": {
"name": "@parameters('$connections')['shared_microsoftformspro']['connectionId']"
}
},
"method": "post",
"path": "/api/sendmail/flow",
"queries": {
"to": "email@domain.com",
"FormId": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"EmailTemplateId": "xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxxxx",
"Regarding": "@body('Create_item')?['ticket_x002d_ID']",
"RecipientInfo": "@body('Create_item')?['ticket_x002d_ID']",
"firstName": "@body('Create_item')?['ticket_x002d_ID']",
"lastName": "@{last(split(triggerBody()?['Subject'],'||'))}"
},
"authentication": "@parameters('$authentication')"
},
"metadata": {
"flowSystemMetadata": {
"swaggerOperationId": "sendSurvey"
}
}
}