Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. $scope.report = function(){
  2. var CEO_EMAIL_ADDRESS = 'support@example.com';
  3.  
  4. $cordovaEmailComposer.isAvailable().then(function() {
  5. $cordovaEmailComposer.open({
  6. to: CEO_EMAIL_ADDRESS,
  7. subject: langTranslateService.getData('REPORT_A_PROBLEM'),
  8. body: '',
  9. isHtml: false
  10. });
  11. });
  12. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement