HTC EVO 4G :: "Unable To Send" Message / AOL E-mails?
Oct 27, 2010
It seems that I am having an issue sending e-mails from my AOL account, has anyone had these issues? There is a long delay and I continually get an "unable to send" message....Just curious as the Sprint rep had issues with their EVO as well, thanks
View 1 Replies
Jun 5, 2010
Unable to send/receive a text message.
SMS Error
Radio Interface Resource Shortage
Details
Cause Code:64
Error Class:2
When I go into Settings: MMS Settings: Connection Settings: everything is greyed out. Should it be that way? Is there something I need to set up first?
View 4 Replies
View Related
Oct 6, 2010
Alright so today for some reason when I replied to, I would get an error message saying that It was unable to send. So I had to delete my email address and re install it. Now it doesn't update once I receive the emails or make a sound.. I have it so it supposed to but still does not. Anyone know what to do about this and how to make send/receive as soon as it comes not every 5 mins?
View 4 Replies
View Related
Jun 22, 2010
however I have never dl'd quick settings. Second was an HTC bug that was being worked on. Can anyone confirm any of this, and if they have had picture txt problems is there a fix other than factory reset?
View 11 Replies
View Related
May 14, 2010
Found out yesterday that my "computer" is not sending text messages (using the native app). It caused an argument between my wife and I, and about damn-near caused a divorce. The bad thing is that, from what I can tell, it hasn't been sending ANY for a couple of days now. (Notice I didn't say that a potential divorce was not the bad thing ) I can receive texts all day long, not able to send them. In the time that I wasn't able to send them, I wasn't receiving any notifications that the text wasn't sent! I can go into the app, menu > undelivered and see 2 dozen texts there. Why am I not getting a failure notification if I have "Failure Notification" checked in the settings?
Because it went on for so long before being noticed, I have no way of knowing if I screwed around with the settings or if an app I downloaded has caused the problem. I've been tempted to use Handcent, but I'm leery about using something that radically changes the interface when I am a new Superphone and new Android user. Besides, it may not fix the problem.
View 5 Replies
View Related
Jun 23, 2010
Does anyone have pic text messaging issues? I get an error message "unable to send message. Retrying generic network failure"
I have handcent, but get the same error message with stock messaging app.
The only things I could find within the incredible forums was that it may be linked to a app bug, which that specific app I have never used, or this is a known HTC error which I can't confirm.
View 8 Replies
View Related
Jun 12, 2010
I am unable to attach even short videos to send via text message, or whatever you want to call it. it says that the files are too large attach. i have had success in teh past with other phones having this feature, so i guess i sort of figured id be able to do it on this phone.
View 4 Replies
View Related
May 16, 2010
ever since the update last night i am unable to send text messages I get SMS code cause code 255, error class: 3.I'm getting pretty mad.
View 7 Replies
View Related
Aug 24, 2010
Every time I am typing an e-mail and have to switch applications or just close K-9, it automatically sends whatever I was typing! Why does it do this, and can I change it?
View 1 Replies
View Related
May 17, 2010
Is there a way to remove this standard text from all mails I send from my phone? Not that I want to disrespect HTC () but I don't want to have to manually remove it all the time.
View 3 Replies
View Related
Jul 9, 2010
I configured my Gmail account successfully in the emulator. My goal is to respond to incoming messages in the mail account from my own application - for example display notification. I am using the standard mail application that comes with the emulator. I tried to receive mails from my account, but it does not work, there are no conversations in the standard mail application. I can't send and reveive messages from inside the emulator. Why?
View 8 Replies
View Related
Jan 27, 2010
I am having a problem receiving text messages. They don't come to the phone. And I will get pic text and the phone wont be able to download them. I miss a voice mail and today I got a voice mail and it show one from the jan 23. I just got the phone 2 weeks ago so I could take it back and get a new hero.
View 1 Replies
View Related
Apr 18, 2010
i cleared some apps and low memory went away but now its back and i didnt dwld anything. also, why is it when people send me pics in mms it has a download button and than doesnt doenload it when i click on it. why cant it be simple like all my other phones and just pop up the pic when received. keep pushing me to iphone, soon i will have no choice. windows is also pushing me to a mac.
View 16 Replies
View Related
Sep 1, 2010
How do you send a text message using the keyboard instead of tapping send on-screen?
View 2 Replies
View Related
Oct 12, 2010
When i try and send a text message it says can not send, i have done an update too my phone.
View 7 Replies
View Related
May 19, 2010
My problem is this, I downloaded Handcent and really like it, however, I can't send messages from home. I have marginal service here (around -98 avg.) but I do get 3G. Whenever I send a message it says Message Failed - Retry, Cancel? I've even had this problem in places with great coverage for both 3G and cell service. The stock messaging app works just fine. So what I've been doing is receiving messages with Handcent and then sending them using the stock app.
So, does anyone have any ideas of what I can do? Are there any settings that can be changed? Does handcent use 3G to send messages?
I'm now trying Chomp to see if that's any better. And, just an FYI, I'm having trouble with text messages, not MMS. I haven't tried sending any pics or videos yet, I've just been sending SMS.
View 2 Replies
View Related
Jun 9, 2010
i've had this phone since it was released and have never gotten handcent to work properly with MMS. I would get the following errors: unknown error, generic network error, unable to send. Stock messenger works fine with MMS, but doesn't work properly if I have handcent installed. Once I uninstall it, it's fine. As a last resort, I "factory restored" my phone. Handcent still doesn't work. Stock messenger occasionally needs to be force closed with "the process com.android.mms has stopped unexpectedly".................
View 11 Replies
View Related
Oct 16, 2009
I am trying to send an MMS message like this --
Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.putExtra("sms_body", "hello world"); sendIntent.setType("vnd.android-dir/mms-sms"); sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File (url))); // I have tried Uri.parse(url) here sendIntent.setType("image/*"); // I have tried "image/jpg" and "impage/jpeg" here... startActivity(sendIntent);
The file that I'm trying to send is in my application sandbox.
/data/data/com.myapp.test/files/myco/cache/1234.jpg
However, every time I send the message, I get --
10-16 01:46:51.371: ERROR/MediaModel(3298): IOException caught while opening or reading stream 10-16 01:46:51.371: ERROR/MediaModel(3298): java.io.FileNotFoundException: /data/data/com.myapp.test/files/myco/ cache/1234.jpg 10-16 01:46:51.371: ERROR/MediaModel(3298): at org.apache.harmony.luni.platform.OSFileSystem.open(OSFileSystem.java: 231) 10-16 01:46:51.371: ERROR/MediaModel(3298): at java.io.FileInputStream.<init>(FileInputStream.java:80)
Is this because the file I'm pointing at is in my local sandbox? And if it is, how do I expose it to the MMS app. I have thought about copying it to the SD card first, but that seems like a really bad solution... Can I have the intent run as thought the person who received it is me? (I thought I remembered reading that somewhere...)
View 2 Replies
View Related
Sep 18, 2010
I cannot send texts, keep getting an uable to send message
View 5 Replies
View Related
May 28, 2010
Yesterday my Dinc started to post a message that it is "unable to send mail" via my Hotmail account. It has a script that you go through to check the settings and I have done that and all would appear to be OK. But, as soon as it checks for mail the message pops back up.
I have shut the phone off and have pulled the battery to no avail. The truly odd thing is emails are coming and going just fine, I'm just getting this dumb message with a tone/vibration warning.
View 3 Replies
View Related
Apr 28, 2009
I used to be able to send SMS messages from one emulator instance to another; the reason why I didn't use Eclipse is because the app automatically replies to a certain SMS request, and the other device is used to receive it. That worked fine under SDK 1.1; however, with the upgrade to 1.5 I get a "could not connect client socket to Invalid argument" error when trying to send an SMS from one emulator to another. I've created a separate AVD for each emulator instance, both Google API, and both devices are listed with the adb devices command.
View 15 Replies
View Related
Jul 16, 2010
I recently received my new HTC Incredible and connected to my exchange account. Everything thing seemed fine until people told me they had not received my emails. I checked and the emails were in my sent folder and appeared to have been sent. Looking into this further I was able to narrow the problem down to only NEW emails to an outside email address are not received. Any email that I reply to and any new email to someone on the same exchange server are received fine. Just new emails to an out side address are never received but are happily sitting in the sent folder.I deleted the exchange account from the phone and set it up again and had the same results. Pulled the battery, etc. I then setup my account on an HTC Hero and got the exact same results. As a side note the same setup on an iphone works fine.Searching around I think I may have narrowed the problem down to a pin issue between the HTC mail client and the Exchange Server but am not sure. Has anyone else had this issue?
View 2 Replies
View Related
Jul 23, 2010
Everything was OK yesterday but now I.can't send SMS! Any settings I can change to fix this?
View 5 Replies
View Related
Aug 19, 2010
I have a Telus HTC Hero with 2.1. Since the update i can't receive or send and mms. can someone help me?
View 1 Replies
View Related
May 30, 2012
Im having trouble sending pictures from my phone.it keeps showing its sending but never sends.it shows that ring of timer if u know what i mean.i can recieve pics but cant sent them.never goes through or sends.i try reading the manual but nothing works.even settings i try playing with but nothing.
View 5 Replies
View Related
May 2, 2010
Why does the People / Contacts entry automatically set up a 'send message' for every phone number even if the phone number is not a mobile number? That means that even though 3/4 of the phone numbers don;t have text message capability, they have a send message.
View 7 Replies
View Related
Oct 6, 2010
I need to send messages through P2P on 3G connection.Sending and receiving works perfectly on lan ip addresses(on wi-fi) but not on 3g or 2g.On 3g I send a message but it never appears on the other end of the line.Can anyone tell me how to make a connection ?
View 5 Replies
View Related
Apr 24, 2010
When I try to do this to a group with more than 6 people, it converts the message to a mms and wants to use there email and wont add any more than 10 contacts.This way is messed up, I have made several groups of 7 different sets of contacts, They all change to MMS Message when selecting any of those groups.I can send a group message by doing the below actions without any problem for some reason though, Which TBH is just more hasse.
View 7 Replies
View Related
Oct 6, 2010
I need to send messages to Android phones through P2P on 3G connection.Sending and receiving works perfectly on lan ip addresses(on wi-fi) but not on 3g or 2g.On 3g I send a message but it never appears on the other end of the line.Can anyone tell me how to make a connection ?
View 1 Replies
View Related
Nov 19, 2009
I have been trying to send message from the android emulator to the web server by using HttpURLConnection. In the server side I use php to read the sent message and keep it in database (mysql). when I send the message, a blank row is added in the database, but the message sent doesn't appear. I think the emulator can communicate with the server but I don't know what happens to the message.
View 3 Replies
View Related