0

I want to send an intent to whatsapp with a phone number and a predefined message from my Application. Does whatsapp provide such intent service or if not, Is there any workaround?

shikhar bansal
  • 1,629
  • 2
  • 21
  • 43

1 Answers1

0

You can find this on official site.

Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
sendIntent.setType("text/plain");
sendIntent.setPackage("com.whatsapp");
startActivity(sendIntent);
Akash Patel
  • 2,757
  • 1
  • 22
  • 30