「cordova-plugin-x-socialsharing」を利用します
基本的にはこちらに書いてある通り
https://github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin
#プラグインの導入
$ cordova plugin add cordova-plugin-x-socialsharing
#使い方
ボタンを用意して、クリック時イベントにて指定
メッセージ共有
<button onclick="window.plugins.socialsharing.share('Test Message')">MSG Share</button>
画像共有
<button onclick="window.plugins.socialsharing.share(null, null, [イメージファイルのパス], null)">IMG Share</button>
メール送信用?(メッセージとタイトル)
<button onclick="window.plugins.socialsharing.share([メッセージ], [タイトル], [イメージファイルのパス], null)">Mail Share</button>
以上です。