• Hi there,

    When I click the email link, I only see the Subject or the Body….but not both.
    I’ve tried to solve this problem, but have had no luck as of yet.

    'email' => Array(
    		'favicon' => 'email_link.png',
    'url' => 'mailto:?subject=TITLE&body=PERMALINK',
    		'awesm_channel' => 'mailto',
    		'description' => __('E-mail this story to a friend!','sociable'),
    	),

    I’ve tried switching them around ‘mailto:?body=PERMALINK&subject=TITLE’, but then the body only comes up.

    Any help would be appreciated.
    Cheers

Viewing 3 replies - 1 through 3 (of 3 total)
  • same problem here, no luck trying to fix it. Any help?

    Here we go. Just need to reverse it (works for me):

    'email' => Array(
    		'favicon' => 'email_link.png',
    		'url' => 'mailto:?body=PERMALINK&subject=TITLE',
    		'awesm_channel' => 'mailto',
    		'description' => __('email this','sociable'),
    	),

    Above fix works for me too – on a number of sites using the plugin. Big thanks to slackerofthemind! (I hope Joost takes note for future updates, or it’ll break again)

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Sociable] Email sends either Subject or Body not both’ is closed to new replies.