I like the functionality of Share This, but I only need the "email this" option using my own custom icon. Is there a sensible way to do this?
Thanks!
I like the functionality of Share This, but I only need the "email this" option using my own custom icon. Is there a sensible way to do this?
Thanks!
The simplest method is a mailto link. This will often open in a desktop client. However, Firefox lets you configure it to use a web service, there are extensions (e.g. ChromeMailer) to do the same in other browsers.
It's a little more complicated if you want to send the email from your server.
The simplest is to use JS to populate an A element:
<a href="mailto:[email protected]?body=Message body here.">
You can create an email-only popup form. This will not affect other AddThis buttons on the page.
Looks simple enough to me