最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Generating Email Links with String Interpolation in Angular 2 - Stack Overflow

programmeradmin1浏览0评论

In my Angular 2 app I am using md-menu and md-icon-button to show a pop-up with an email address. I'd like the email address that pops up to actually trigger the user's default email setup when clicked on. Because I am pulling in data via string interpolation, I also need these emails to be generated with string interpolation. This is what I have now:

<md-menu #emailMenu="mdMenu">
<button md-menu-item>{{record.email}}</button>
</md-menu>

<button md-icon-button [mdMenuTriggerFor]="emailMenu">
<md-icon>mail_outline</md-icon>
</button>

Where you see {{record.email}}, that's where I need to structure this so that a default email behavior is triggered (basically like a mailto: function). How do I do this in Angular 2?

Would I do something like this?

<button md-menu-item><a href="mailto:{{record.email}}"></a></button>

Or is there a better way to do it?

In my Angular 2 app I am using md-menu and md-icon-button to show a pop-up with an email address. I'd like the email address that pops up to actually trigger the user's default email setup when clicked on. Because I am pulling in data via string interpolation, I also need these emails to be generated with string interpolation. This is what I have now:

<md-menu #emailMenu="mdMenu">
<button md-menu-item>{{record.email}}</button>
</md-menu>

<button md-icon-button [mdMenuTriggerFor]="emailMenu">
<md-icon>mail_outline</md-icon>
</button>

Where you see {{record.email}}, that's where I need to structure this so that a default email behavior is triggered (basically like a mailto: function). How do I do this in Angular 2?

Would I do something like this?

<button md-menu-item><a href="mailto:{{record.email}}"></a></button>

Or is there a better way to do it?

Share Improve this question asked Feb 2, 2017 at 23:53 MuirikMuirik 6,28910 gold badges69 silver badges132 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 9

You can bind to the href property:

<a [href]="'mailto:' + record.email"></a>

发布评论

评论列表(0)

  1. 暂无评论