문제

How can I implement e-mail addresses in a Trigger.io app to (externally) open the Mail application for sending an e-mail?

The basic attribute seems not work out of the box and I didn't find anything in the official Trigger.io docs.

도움이 되었습니까?

해결책

Just using plain HTML works fine for my Trigger.io app:

<a href="mailto:your-email@address.com">Contact me</a>

You can even add a predefined subject, just add ?subject=email-subject at the end of the href attribute. Check out the mailto syntax for more examples.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top