Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8296939
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T15:13:01+00:00 2026-06-08T15:13:01+00:00

I am trying WebIntent plugin to send email, but failed to send. Can you

  • 0

I am trying WebIntent plugin to send email, but failed to send. Can you give me a complete example to send Email with WebIntent with Android.

I have also found that stackoverflow link
Phonegap webintent

After followed this, when I click to send button it show a option to select how I like to send email. Then I select my app name from options, and then I find ‘unfortunately app_name is stopped’.

Any help?

-Arefin

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T15:13:02+00:00Added an answer on June 8, 2026 at 3:13 pm

    You must use the ACTION_SEND to send emails from Android Devices. I show you one example to send an email:

    Button btnSend = (Button) findViewById(R.id.btnSend);
    btnSend.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
            //obtenemos los datos para el envío del correo 
            EditText etEmail = (EditText) findViewById(R.id.etEmail);
            EditText etSubject = (EditText) findViewById(R.id.etSubject);
            EditText etBody = (EditText) findViewById(R.id.etBody);
            CheckBox chkAttachment = (CheckBox) findViewById(R.id.chkAttachment);
            Intent itSend = new Intent(android.content.Intent.ACTION_SEND);
            itSend.setType("plain/text");
            itSend.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{ etEmail.getText().toString()});
            itSend.putExtra(android.content.Intent.EXTRA_SUBJECT, etSubject.getText().toString());
            itSend.putExtra(android.content.Intent.EXTRA_TEXT, etBody.getText());
    
            if (chkAttachment.isChecked()) {
                itSend.putExtra(Intent.EXTRA_STREAM, Uri.parse("android.resource://" + getPackageName() + "/" + R.drawable.icon));
    
                itSend.setType("image/png");
            }
    
            startActivity(itSend);
        }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an Android widget (extends the AppWidgetProvider class) and I'm trying to access
Trying to debug a plugin in CRM 2011 can be extremely difficult. Not only
trying to get my first HTML/CSS uni assignment sorted but have become a bit
Trying to create a backbone plugin that inherits from Backbone.Model but overrides the sync
Trying to make this jQuery filter that uses .find case-insensitive. For example, when the
Trying to figure out how I can do this properly. The print_r looks like
trying to figure out why this is happening - I have an input text
I have been trying to use an intent to open a link to a
Trying to load a page fragment, or at least jump to a div but
Trying to do this, but is it wrong? Below is my style and script

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.