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,541
  • 2
  • 19
  • 41

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,706
  • 1
  • 20
  • 28