Power Automate Tutorial Send Task Reminders based on MultiSelect People Column in SharePoint

Описание к видео Power Automate Tutorial Send Task Reminders based on MultiSelect People Column in SharePoint

Its been a while since I posted a tutorial - sorry for the delay on this one!
Here is a walkthrough on how to create a workflow to send task due reminders to people who are listed in a multi select person column in SharePoint.

This code is referenced in the clip. Note add angle brackets on your css.

Schema for Parse JSON
{
"type": "array",
"items": {
"type": "object",
"properties": {
"TaskEmail": {
"type": "string"
}
},
"required": [
"TaskEmail"
]
}
}

CSS Table Style
style
Table {
font-family: Arial, Helvetica, sans-serif;
background-color: #EEEEEE;
border-collapse: collapse;
width: 75%;
}
Table td, Table th {
border: 1px solid #ddd;
padding: 3px 3px;
}
Table th {
font-size: 15px;
font-weight: bold;
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #1C6EA4;
color: white;
}
/style

Комментарии

Информация по комментариям в разработке