/**
* Send SMS
*/
Private void sendMessage (){
Uri smsToUri = Uri. parse ("smsto :");
Intent intent = new Intent (android. content. Intent. ACTION_SENDTO, smsToUri );
Intent. putExtra ("sms_body", "I think this [" + pd. name + "] is good. Use # To buy wine mobile phone mall #. buy genuine red wine anytime, anywhere ~ Download now and try ["+ SHARE_URL + "]");
StartActivity (intent );
}
/**
* Send an email
*/
Private void sendEmail (){
Uri uri = Uri. parse ("mailto :");
Intent emailIntent = new Intent (android. content. Intent. ACTION_SEND, uri );
// Text format
EmailIntent. setType ("text/plain ");
// Recipient's email address
EmailIntent. putExtra (android. content. Intent. EXTRA_EMAIL ,"");
// Title content
EmailIntent. putExtra (android. content. Intent. EXTRA_SUBJECT, "I found a good wine when I bought it too ");
// Mail text content
EmailIntent. putExtra (android. content. Intent. EXTRA_TEXT, "I think this [" + pd. name + "] is good. I also use # To buy wine mobile phone mall #. I can buy genuine wine anytime, anywhere ~ Download now and try ["+ SHARE_URL + "]");
StartActivity (emailIntent );
}