Home > Software engineering >  How to send an email in Angular
How to send an email in Angular

Time:09-29

I'm interested in sending an email in Agular or in Typescript in such a way that they click on a certain email address and then it will open in Gmail And can't do it in any way

CodePudding user response:

To open an email using the user's preferred email client you can use a normal anchor tag:

<a href="mailto:SOME_EMAIL">Send an email</a>

You can also handle phone numbers and other types this way: Mozilla Docs for Anchor Tags

  • Related