I added this inside the HTML… When user click, it does open the email client but the mailto did not populate. It display #. I suspect my syntax is incorrect. TQ
<a href=“mailto:#”>support@empowerlogix.com
I think what yo want is this:
<a :href="mailto:model.email">{{model.email}}</a>
note how there is a colon to bind the email inside the tag, but outside the tag you use {{ }}
Reference:
Sorry… This one works. TQ
1 Like