Hi Beth College,
As per your description, you need to add column(single line column) or in your Email column use a below JSON code formatting to make a email address as a link in SharePoint Lists . Go to Email column (single line column), right-click on column>Column setting>Format this column> Advance mode> and paste below code there and click "save" to check the result.
Reference screenshot:
JSON code:
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json",
"elmType": "div",
"children": [
{
"elmType": "a",
"style": {
"padding-right": "8px"
},
"txtContent": "@currentField",
"attributes": {
"target": "_blank",
"href": {
"operator": "+",
"operands": [
"mailto:",
"@currentField",
"?subject=Wonder women here&body=Hey ",
"[$Title]",
"\nJust checking, if you have saved the world?.\r\n---\r\n",
"\r\nClick this link for more info. http://contoso.sharepoint.com/sites/ConferencePrep/Tasks/Prep/DispForm.aspx?ID=",
"[$ID]"
]
}
}
},
{
"elmType": "a",
"attributes": {
"target":"_blank",
"class": "sp-field-quickActions",
"href": {
"operator": "+",
"operands": [
"mailto:",
"@currentField",
"?subject=Wonder women here&body=Hey ",
"[$Title]",
"\nJust checking, if you have saved the world?\r\n---\r\n",
"\r\nClick this link for more info. http://contoso.sharepoint.com/sites/ConferencePrep/Tasks/Prep/DispForm.aspx?ID=",
"[$ID]"
]
}
}
}
]
}
Result:
I appreciate your patience and understanding.
Best Regards
Waqas Muhammad