Mark workflows Send Emails as important

Hi, is some way to add smtp flags to Send Email action? In concrete, the important flag.

Hi @jsosa,

I tried out something like below (“importance”: “high” in the attribute section), but that did not seem to work. So, I am assuming that it is not a currently supported WF feature and you may need to go with some workaround of adding the [High Important] text to your email header.

"definition": {
		"start": "Send Email",
		"steps": {
			"End Step - Success": {
				"displayName": "",
				"type": "success"
			},
			"Send Email": {
				"actionId": "sp:send-email",
				"attributes": {
					"context": {},
					"recipientEmailList": [
						"[email protected]"
					],
					"subject": "Test - Importance",
					"importance": "high"
				},
				"displayName": "",
				"nextStep": "End Step - Success",
				"type": "action",
				"versionNumber": 2
			}
		}
	}
1 Like

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.