Reputation: 11012
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!
Upvotes: 0
Views: 178
Reputation: 5620
You can create an email-only popup form. This will not affect other AddThis buttons on the page.
Looks simple enough to me
Upvotes: 2
Reputation: 15733
<span class="st_email_button" displayText="Email"></span>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">
stLight.options({
publisher:'12345'
});
</script>
see it here
Upvotes: 0
Reputation: 57715
The simplest is to use JS to populate an A element:
<a href="mailto:[email protected]?body=Message body here.">
Upvotes: 1
Reputation: 285047
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.
Upvotes: 1