HTC EVO 4G :: Opening Attachment In Email

Aug 12, 2010

Had the phone now two weeks. Got the upgrade to 2.2 from sprint succesfully. Enjoying the power of this machine for sure. I lurk here a lot and have learned tons for sure from reading, reading, reading sometimes till the wee hours. Three things I still can't seem to figure out. 1. Opening an attachment in an email: When a pic or doc file comes in I can't seem to view it. I click "view attachment" it shows the name of the file and the size but does not open the file or download it for me to see. What am I doing wrong? Some kind of settings issue maybe? 2. Deleting a file: I downloaded a pdf file off the internet and now I wish to delete it. Menu does not show an option to delete when I am viewing thde file with pdf viewer. Any ideas? 3. Voice email: I love the voice texting, voice emailing, etc but when I open an email to compose new and use the speak option to speak the name of a current contact (who has an email as part of his contact info) it does not try to auto fill that like it would if I hand texted it in. In other words, say I begin a new email and in the TO box I click the microphone and speak john smith. It types his name in but does not recognize him from contacts and fill in his email address like it does if I start to type j o h n s m by hand. I must be doing something wrong here too maybe?

HTC EVO 4G :: Opening attachment in email


Opening Gmail Attachment With App

Nov 17, 2012

I need to open files with custom extension using my app. I am able to do this using Intent filters when the file is in my sd card. I can also view the 'download' and 'preview' buttons if the file is sent as a Gmail attachment. However, when I clicked the download/preview buttons, I got the message - "Sorry, the attachment could not be downloaded".

I thought this was an issue with my app. But I had a random idea and installed "Download All Files" app on my phone.URL....Then, when I click download button in Gmail, both Download All Files and My App are proposed for downloading the file. I chose my app, and everything works fine!!

[HIGH] <intent-filter >
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:mimeType="*/*" />
<data android:scheme="content" android:host="*"
[code]...

View 1 Replies View Related

Motorola Droid :: How Do Save Attachment After Opening It?

Nov 27, 2009

What is the trick to being able to forward an email attachment. When i forward the email it sends it without the attachment. Also, how do you save the attachment after opening it?

View 12 Replies View Related

HTC Hero :: Network Error When Opening An Attachment

Dec 1, 2009

I have the HTC Hero and have set up my email with the exchange (aka my work email). I get all my emails but when I try to open an attachment, it tells me "Alert... Network Error". Is there anything I can do to be able to download and view my attachments.

View 3 Replies View Related

HTC Incredible :: Save Attachment From Email

Sep 7, 2010

I received an email in my Gmail acct with a pdf attachment, and I want to download it. I can preview the file but I see no option to save it to my SD card or Dropbox or anything. Any tips on saving a pdf on the DINC?

View 5 Replies View Related

Android :: Can't Open Email Attachment

Aug 8, 2010

I have the Samsung Captivate and I'm totally new. I'm having problems opening my email attachments (pdf and xls). I found this thread, but I'm still confused. I can't seem to find "open unknown apps" nor "Unknown Sources" in my Settings.

View 5 Replies View Related

Android :: Open Email Attachment In App?

Jan 10, 2010

I want to open a specific type of file that my app can already send over email as an attachment. I need to be able to have the android email app choose my app to download or open that specific file type. I can't figure out how to set up an intent filter that would let me do that though. Anyone know how this is done?

View 1 Replies View Related

HTC Droid Eris :: MP4 Email Attachment

Jan 27, 2010

I receive MP4 attachments from my Linksys G54 camera but Droid plays the file on rare occasions. Sometimes it plays and other times it will not play even the same file.

View 3 Replies View Related

Android :: Sending Email With Attachment

Apr 1, 2010

I never got this to work on a real device, got the email but no attachment, also when installing K9 on a emulator and then sending the email I see the mail in the outbox with a size of 0 bytes:

public static void sendFile(Context context) { File exportDir = new File(Environment.getExternalStorageDirectory(), "mydir"); if (!exportDir.exists()) { exportDir.mkdirs(); } String csvFile = exportDir + "/file.csv"; File file = new File(csvFile); if(file.exists()) { Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_SUBJECT, "CSV file"); sendIntent.setType("text/csv"); //sendIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); //sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://" + Environment.getExternalStorageDirectory() + "/mydir/file.csv")); sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///sdcard/ mydir/file.csv")); context.startActivity(Intent.createChooser(sendIntent, "Send CSV file")); } else { Util.displayToast(context, R.string.no_csv_file); } }

View 11 Replies View Related

Android :: Sending Email With Attachment Programmatically

Aug 7, 2009

I am trying to send an email using native email client on android phone. I have tried following ways to add an attachment to the mail.

Method 1 Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.setType("image/jpeg"); sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://sdcard/ abc.jpg"));

Method 2
Sending the image as body content
sendIntent.putExtra(Intent.EXTRA_TEXT, "<HTML><BODY><b><IMG SRC= "data:image/jpeg;base64," + <imagepath> + ""alt = "pleaseview this image"/></b></BODY></HTML>");

I can successfully attach the image manually but when I tried to attach and send it programmatically the mail was sent without attachment.

View 5 Replies View Related

Android :: Send Zip File As Email Attachment?

Sep 10, 2009

how to send a zip file as an attachment of an email?

Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_EMAIL, mailto); sendIntent.putExtra(Intent.EXTRA_SUBJECT, "Sample"); sendIntent.setType("application/zip"); sendIntent.putExtra(Intent.EXTRA_STREAM,pathtozipfile);
startActivity(Intent.createChooser(sendIntent,"send the mail"));

I tried about snippet.But didnt work. Anybody tried sending zip file attachments?

View 2 Replies View Related

Android :: Sending An Email With An Attachment From An Application

Nov 10, 2010

I'm creating an app that has an "export" feature which converts the user's data into a CSV file, and allows the user to send it as an attachment to somebody (presumably themselves).

The CSV file is created successfully, but when I try to send the email, I encounter a problem. The device looks like it is going to send the email with the appropriate attachment, but when the email is received... there is no attachment at all...

Here is the code I am using to send the email:

CODE:................

View 2 Replies View Related

Android : How To Install Apk From Email Attachment To Phone?

Aug 9, 2010

I have built a test android app and signed it successfully and then sent it to someone to test via email. They click on the attachment in the email on their android phone and get a parsing error.

View 2 Replies View Related

General :: How To Change Email Attachment Size

Feb 29, 2012

I am using the OEM Android email app. Attacing a picture is no problem. If I try and attach say a video of 5 plus mb it won't attach. I get an error message telling me file is too large to attach.

(I have a ZTE Blade running Android 2.3.7 on a Cyanogenmod ROM 7.10.)

I have two questions.

- what is the maximum permisable file size for attachments;
- can the file size limit be increased in anyway?

View 1 Replies View Related

HTC Desire HD :: Cannot Send Email With Attachment Using Gmail Application

Nov 20, 2010

I cannot send an email with an attachment using the Gmail app on this phone. I tried to send three different photographs to three different email addresses and it failed every time. Emails without attachments go perfectly every time.

View 6 Replies View Related

Android :: Sending Mp3 File Failed As Email Attachment

Jun 30, 2009

I just copy the code from http://www.openintents.org/en/node/121 to test if I can send .txt or .mp3 file as email attachment, Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.setType("audio/mp3"); sendIntent.putExtra(Intent.EXTRA_STREAM, "file:///sdcard/mysong.mp3"); sendIntent.putExtra(Intent.EXTRA_SUBJECT, "Subject"); startActivity(Intent.createChooser(sendIntent, "Title:"));

But I got an error said that No applications can perform this action. My android sdk is cupcake1.5, and I have already set up my gmail acount in Email application. Anyone knows why? If I set the type as "*/*"(sendIntent.setType("*/ *");), it can launch the Email activity but with no attachment.

View 5 Replies View Related

Android :: Email Attachment Maximum Size Limitation

Mar 11, 2010

I wanted to know what is the maximum size of the file that we can attach with email in android? Or is the attachment limit completely dependent on E-mail that we have configured?

View 1 Replies View Related

Sprint HTC Hero :: Maximum Attachment Size For Email?

Mar 14, 2010

what the maximum file size is I can attach to an outgoing email using Gmail? I know Gmail allows 20 megabytes, but is there a size limit I can attach from the Hero? I have had the phone tell me a file is too big to attach, but it was well under 20 megs.

View 4 Replies View Related

Motorola Droid :: Can't Open Attachment On My Email After Installing BBeast / Fix It?

Feb 15, 2010

After installing BBeast I can't open the attachment on my Email..
Anyone know how to fix this?

View 1 Replies View Related

HTC EVO 4G :: Email Attachments Not Opening

Sep 19, 2010

Hey guys recently I try to open my email attachments but when is about to show it forcecloses and it happens with all with all the attachments from different senders.Any idea what the problem is?

View 3 Replies View Related

HTC Desire :: Opening Email Attachments

Oct 3, 2010

I'm relativley new to Android. I've got an HTC Desire & most of my incoming emails are not on a googlemail address.I've never been able to open email attachments for example today I've recieve a message showing a 300kb jpg image attachment. I've previoulsy noticed that I cannot open PDFs or MS Word docs - I do have the PDF viewer & Quick office installed.

View 1 Replies View Related

Android :: Opening Phone Email Application From Another One

Oct 6, 2010

I have my application which creates an audio file. I need to forward this file via Android Email app. But on calling the email intent, I get a permission denial. I am calling the email app like this:When I am launching the app, I get this "Not granting access" message in the ddms logs: WARN/PackageManager(90): Not granting permission com.android.email.permission.ACCESS_PROVIDER to package com.mplayer.application (protectionLevel=3 flags=0xbe44) Can I not open the android email app from my application. I am working on Android 2.2.

View 6 Replies View Related

HTC Incredible :: Email Bulk Read Without Opening Each One?

Jun 6, 2010

Is there a way to mark all unread emails as "read" without opening up each on?

View 2 Replies View Related

Android :: How To Launch Android's Email Activity With An Attachment Attached?

Sep 20, 2010

In my android, how can I launch android's compose email activity with an attachment attached?

View 1 Replies View Related

HTC EVO 4G :: Attachment Open Not Saved

Jun 25, 2010

Sorry if this has been asked before. Does anyone know when downloading a attachment in email and when completed, you decide to open instead of saving to SD card - does the attachment automatically delete? Or does it get installed into the main memory? If so, how do we delete unwanted attachments?

View 1 Replies View Related

HTC Incredible :: Download Gmail Attachment

May 12, 2010

When i get a gmail with an attachment i can see the little paper clip telling me that i have an attachment and it will even tell me the size of the attachment but i cannot download it. it is not a clickable link. if i go to gmail on my browser it will let me start to download it but it always says download failed this phone does not support this file. its just a document, is there an app that allows me to download attachments such as this? the file was .ics whatever that is. but it has happened with other file types.

View 11 Replies View Related

Samsung Moment :: Open .eml Attachment

Dec 26, 2009

I am using the bundled Moxier Mail on my Moment to receive mail from my corporate Exchange 2003 server. I am unable to open emails which have an .eml attachment (forwarded email). Anyone found a solution to this?

View 2 Replies View Related

HTC EVO 4G :: How To View An Attachment Once It Downloade Onto Sd Card?

Sep 21, 2010

How do I view an attachment once it has been downloade onto the sd card?? I download email attachments but i dont know where they goor how to view them.

View 5 Replies View Related

HTC Droid Eris :: Download An Attachment

Nov 10, 2009

I received my first zip file through gmail today and for the life of me I can't figure out how to download it? All gmail gives me is a preview option which if I click brings up Astro file manager, but won't go any farther?

View 7 Replies View Related

HTC Droid Eris :: View Attachment

Apr 21, 2010

I recieved an attatchment through an email and I get a message asking to save to sd card. If I do this, how can I view the attatchment?

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved