Hi @Tanvir, Abdullah (Contractor) ,
You should replace column display name “Name” with internal name “FileLeafRef”.
I modified your code and it worked fine in my end:
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "div",
"children": [
{
"elmType": "span",
"style": {
"padding": "12px"
},
"txtContent": "@currentField.title"
},
{
"elmType": "a",
"attributes": {
"iconName": "Mail",
"class": "sp-field-quickActions",
"href": {
"operator": "+",
"operands": [
"mailto:",
"@currentField.email",
"?subject=Tags Not Applied &body=Hi, \n\nYou have not applied tags for the following file: ",
"[$FileLeafRef]",
"\n\nRegards"
]
}
}
}
]
}
This is my test result:
I hope this information has been useful, please let me know if you still need assistance.
If an Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.