0

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!

forrest
  • 9,854
  • 25
  • 66
  • 122

4 Answers4

2

Add This email-only option

You can create an email-only popup form. This will not affect other AddThis buttons on the page.

Looks simple enough to me

Eli
  • 5,410
  • 1
  • 28
  • 27
1

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.

Matthew Flaschen
  • 268,153
  • 48
  • 509
  • 534
1

The simplest is to use JS to populate an A element:

<a href="mailto:example@mail.com?body=Message body here.">
Peter Ajtai
  • 55,701
  • 13
  • 120
  • 138
0
<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

Koerr
  • 14,295
  • 27
  • 73
  • 107