I'm new to Knockout and trying to determine how I might generate an email link with knockout. The problem is around using "href:" with "mailto:". I've tried various variants including the below and others but either it won't get rendered as mailto link, the property name will be sent instead of the value, or nothing will be rendered. Tips on what syntax I should be using for this? Thanks
<a data-bind="mailto: EmailAddress, text: EmailAddress"></a>
<a data-bind="attr: { href: 'mailto:PrimaryEmail', title: PrimaryEmail }, text : PrimaryEmail">