'How to show available mail apps in my phone

I'm trying to open the email app from my app, for that I'm using the below code to open. But it only opens the Gmail app, I have installed the outlook and yahoo mail apps.

 Intent intent = new Intent(Intent.ACTION_MAIN);
                    intent.addCategory(Intent.CATEGORY_APP_EMAIL);
                    startActivity(intent);

Can anyone help, need to show the available mail apps.(Gmail, outlook, yahoo)



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source