Thanks Alex,
Made a quick tweak so I could control variables at runtime and Works like a charm! This will give me an email envelope icon next to the contacts’ name that opens mail client set to their email…
function fnCustomerContactToolStrip()
{var html2 = "<IMG src='https://abc123.sharepoint.com/Media/16x16/email_16.png' style='cursor: pointer; float: left; padding: 0px 0px 0px 5px'; title='e-Mail Contact...'; onclick='createMailToLink()'/>";
jQuery("#sbs_Field_CustomerContact").after("<td>"+html2+"</td>");
}
function createMailToLink(){
var vemail = 'email@domain.com';
var vsubject = 'Test';
var vemailBody = 'This is a test of the Emergency Broadcast System';
var a = document.createElement("a");
a.setAttribute("href","mailto:"+vemail+"?subject="+vsubject+"&body="+vemailBody);
document.getElementsByTagName("body")[0].appendChild(a);
a.click();
}