A React component for creating share by email links.
npm install --save react-email-share-link
import EmailShare from 'react-email-share-link'
<EmailShare email="[email protected]" subject="Your subject" body="Your message, including the link to this page">
{link => (
<a href={link} data-rel="external">Share this by email</a>
)}
</EmailShare>
NOTE: If you don't pass a body
prop, it will default to document.location.href
. If a body
is provided, don't forget to include a link to the page.
MIT © Hutson Inc