1. 程式人生 > >cordova-plugin-x-socialsharing 外掛修改

cordova-plugin-x-socialsharing 外掛修改

前段時間公司讓寫一個分享郵件的功能 主要是把檔案分享給特定的使用者 於是就考慮用cordova-plugin-x-socialsharing這個外掛來做 後來發現不行 不能夠指定賬戶分享檔案

我在那個外掛基礎上做了修改 詳情:https://github.com/qwerqwermhc/cordova-plugin-x-socialsharing

this.socialSharing.shareViaEmail( 'How are you? Nice greetings from Leipzig', 'pdf', [ this.email], [], [], [ this
.filepath]).then(() => { // ! console.log(JSON.stringify( "Success")); }).catch((error) => { console.log(JSON.stringify( "ERROR:" + error)); }); 程式碼如上this.email是接收者的郵箱  this.filepath 這個是檔案的儲存位置