0

I have added mailto:sales@abc.com in anchor tag. when user click on link then the mail application is get opened in current tab. But I want the mail tab should be opened in new tab.

Please suggest me solution

Thanks in advance

  • possible duplicate of [How to open mailto links in new tab for users that have gmail as the default mail handler?](http://stackoverflow.com/questions/11576255/how-to-open-mailto-links-in-new-tab-for-users-that-have-gmail-as-the-default-mai) – Mimo Dec 06 '14 at 07:09

1 Answers1

0

you can use target.

<a href="mailto:sales@abc.com" target = "_blank">Click me</a>
gkrishy
  • 756
  • 1
  • 8
  • 33