I read on many forums suggesting to use @Html.MailTo to send emails using local client (i.e similar to "mailto:" in anchor.
But when I try doing that, I simply dont find "MailTo" option in intellisense... Am I missing something, or if its obsolete now, or if its a customer HtmlHelper?
[DataType(DataTypes.EmailAddress)]
, you need to specify the EmailAddress DisplayTemplate explicitly e.g.@Html.DisplayFor(model => model.emailAddress, "EmailAddress")
– Thor