Skip to content

veelenga/ember-mail-to

Repository files navigation

ember-mail-to

Build Status npm Ember Observer Score

Ember component to create HTML mailto links.

Installation

ember install ember-mail-to

Usage

<MailTo
  @to='[email protected]'
  @cc={{array '[email protected]' '[email protected]'}}
  @bcc='[email protected]'
  @subject='Email Subject'
  @body='Email Body'
>
  Click here to send an email
</MailTo>

Creates the following element:

<a href="mailto:[email protected][email protected],[email protected]&amp;[email protected]&amp;subject=Email%20Subject&amp;body=Email%20Body">
  Click here to send an email
</a>

License

This project is licensed under the MIT License.