---
title: "How can your application perform actions that are provided by other application e.g. sending email?"  
description: "How can your application perform actions that are provided by other application e.g. sending email?"  
author: "Anonymous User"  
published: 2015-05-26  
updated: 2020-09-23  
canonical: https://www.mindstick.com/interview/2578/how-can-your-application-perform-actions-that-are-provided-by-other-application-e-g-sending-email  
category: "android"  
tags: ["android activity", "android intent"]  
reading_time: 1 minute  

---

# How can your application perform actions that are provided by other application e.g. sending email?

Intents are created to define an action that we want to perform and the launches the appropriate activity from another application.

```
Intent intent = new Intent(Intent.ACTION_SEND);        intent.putExtra(Intent.EXTRA_EMAIL, recipientArray);        startActivity(intent);
```

## Answers

### Answer by Anonymous User

Intents are created to define an action that we want to perform and the launches the appropriate activity from another application.

```
Intent intent = new Intent(Intent.ACTION_SEND);        intent.putExtra(Intent.EXTRA_EMAIL, recipientArray);        startActivity(intent);
```


---

Original Source: https://www.mindstick.com/interview/2578/how-can-your-application-perform-actions-that-are-provided-by-other-application-e-g-sending-email

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
