Email not loading or sending

I got the phone on Saturday, set up my email and everything worked fine.  Now it won't load or send emails.  Timer just keeps going around and around?! What do I do?

Try doing a battery pull to reboot your phone, take the battery out place it back in and power on the phone.

Similar Messages

  • Why isnt my godaddy imap email not loading messages?

    Why isnt my godaddy imap email not loading messages?

    I'm having the same issue, but slightly different - since upgrading to Mountain Lion the Inbox folder doesn't come across.  If I right-click on the account and select "Get Account Info", the 'Inbox' folder does not appear in the Mailbox list.  I've got a support email into GoDaddy but haven't heard from them yet.
    Hey - sorry - I just realized this is an iPhone discussion group.  Can't figure out how to delete this post.
    Message was edited by: Chuck Konfrst

  • Bridge email not loading...

    bridge kinda works... ive never been able to connect bridge browser, however everything else worked fine... until today... all of a sudden, my bridge email stopped responding ... restarted both torch and pb...now it onoy stays at white screen with the green circle (loading...)..
    anybody else here experiencing issues with bridge email and browser??

    ** UPDATE ***
    just realized when you click on top left part of mail bridge app u can chose which mail boxes to view and sort..
    so now i was able to see that some mail accounts where not loading and others are okay.maybe its an issue with my torch...?

  • Email not loading since update to 2.0.1.668

    Hi BlackBerry Helpers, 
    Ever since the update to 2.0.1.668 the email app is not loading.
    But when I restart my PlayBook it loads once but if i close it and open it when i get a nofication it dont load again...unless i restart it, it goes round and round in a cycle.
    I don't know if it is because of the update or something i have done.
    Please help, thank you
    Solved!
    Go to Solution.

    pcantellow wrote:
    Hi BlackBerry Helpers, 
    Ever since the update to 2.0.1.668 the email app is not loading.
    But when I restart my PlayBook it loads once but if i close it and open it when i get a nofication it dont load again...unless i restart it, it goes round and round in a cycle.
    I don't know if it is because of the update or something i have done.
    Please help, thank you
    pcantelow, on your PlayBook, at Options > Accounts, delete the email accounts.
    After doing so, touch the battery icon > restart.
    Return to the Options > Accounts and add back one of your email accounts.
    Now, does it work? If so, go back and re-add any additional email accounts.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • IPhone5s - yahoo email not loading

    As of yesterday morning my yahoo email stopped loading.  So I deleted the account and added it back.  Now it won't get any mail.  I have reset the phone and also reset my network settings.  any suggestions welcome.   Thanks

    bump... anyone know what the deal is?

  • Emails not loading after moving from one Inbox to another

    I was having problems with one of my Mail accounts recently (it would randomly not pull in new emails, go offline, not connect to the SMTP server etc.) and on advice create a new one. When this was up and running, I planned on moving the Inbox and Sent Items from the dusfunctional Mail account over to the new account's Inbox and Sent Items folders.
    After dragging the items from the old to the new folders, I deleted the old Mail account. Before deleting the old account, I checked to make sure that the old emails were listing correctly in the new folders which they did, showing the sender's name and subject line. I however neglected to notice that the Preview text was not showing on some of the messages although it was showing on others. I also did not click on any of the messages to see if they would actually open. I just saw them listed and thought the transfer job was done.
    After deleting the old Mail folder, I am now left with all of the old emails listed in my new Inbox and Sent Items folders, but when I try to open them it just says "Loading" and nothing else happens. I assume that message contents had not yet fully moved over into the new location by the time I deleted the old Mail folder....
    Does anybody know if there is any way in which I might still retrieve the fiull content of the old emails? Does deleting the Mail account also delete all of its emails from my hard drive? Or are they still sitting somewhere?
    All suggestions appreciated.

    Link the two Macs together: there are several ways to do this: Wireless Network, Firewire Target Disk Mode, Ethernet, or even just copy the Library to an external HD and then on to the new machine...
    But however you do choose to link the two machines...
    Simply copy the iPhoto Library from the Pictures Folder on the old Machine to the Pictures Folder on the new Machine.
    Then launch iPhoto. That's it.
    This moves photos, events, albums, books, keywords, slideshows and everything else.
    +Note: there is no importing involved+
    The thumbs appear, but the images are added 2 or 3 times each and the events are all messed up.
    This happens when you import one Library to another, which you've done by drag and drop:
    Creating a black library and over writing the new with the old.
    Your problem is arising because of the Network Share. iPhoto needs to have the Library sitting on disk formatted Mac OS Extended (Journaled). Users with the Library sitting on disks otherwise formatted regularly report issues including, but not limited to, importing, saving edits and sharing the photos.
    Regards
    TD

  • Flash form to email not loading message body

    I'm creating a form in Flash for a client's website to make
    online reservations. I've been experimenting with asp scripts and
    found two that work fine, except that the body of the email won't
    load. The emails come through fine, but blank.
    Since it's the same with both asp scripts I suspect the prob
    is in the AS but I've been looking at this and tweaking and
    experimenting for four days now. Any help will be appreciated.
    Here's one of the asp scripts:
    <%
    strToEmail = "[email protected]"
    strToName = "Gerry Mooney"
    strToSubject = "LPReservation Request-tomailscript"
    Set Mailer = Server.CreateObject("CDO.Message")
    'Mailer.RemoteHost = "mail.yourdomain.com"
    strName = Request.form("name")
    strEmail = Request.form("fromEmail_txt")
    strMesg = Request.form("firmName_txt")
    strBody = strMesg
    'Mailer.FromName = strName
    Mailer.FromAddress = strEmail
    'Mailer.AddRecipient strToName, strToEmail
    Mailer.Subject = (strToSubject)
    Mailer.BodyText = strMesg
    if Mailer.SendMail then
    Response.Write "_root.status_txt.text=Your message has been
    sent. Thank you."
    else
    Response.Write "_root.status_txt.text=Error: Fail to sent
    your message."
    Response.Write Mailer.Response
    end if
    %>
    And here's the AS:
    var email_lv:LoadVars = new LoadVars();
    //this function is called when email_lv loads the server-side
    script.
    email_lv.onLoad = function(success) {
    //If the script was successfully loaded, this condition is
    run
    if (success) {
    /* Though the server-side script was loaded, it does not
    mean it was
    executed successfully. This condition gets a response from
    the
    server-side script and determines if it was truly
    successful. */
    if (this.server_mes == "ok") {
    status_txt.text = "Email Sent";
    /* You can add additional code here. This is only run
    if everything went as planned. */
    } else {
    //email failed to send, but script did load. Likely a server
    issue.
    status_txt.text = "Email Failed";
    /*This is the onRelease function for "submit_btn" button.
    This is only run
    if the button was pressed. */
    submit_btn.onRelease = function() {
    /* Here we are validating the data. This insures the email
    address contains
    both the "@" and ".", If not, it stops the script and alerts
    the user. */
    if (!fromEmail_txt.length || fromEmail_txt.indexOf("@") ==
    -1 || fromEmail_txt.indexOf(".") == -1) {
    status_txt.text = "Invalid Email";
    //This validates the subject line contains text
    } else if (!subject_txt.length) {
    status_txt.text = "Missing Subject";
    //This validates the message body contains text
    } else if (!firmName_txt.length) {
    status_txt.text = "Missing Firm Name";
    //This validates the check in date
    } else if (!checkIn_txt.length) {
    status_txt.text = "Missing Check-in Date";
    //If everything is filled out correctly, this is run.
    } else {
    //Collects the data from the text boxes and gives it to
    email_lv
    email_lv.fromEmail_txt = fromEmail_txt.text;
    email_lv.subject_txt = subject_txt.text;
    email_lv.firmName_txt = firmName_txt.text;
    email_lv.checkIn_txt = checkIn_txt.text;
    /* Finally, send the data to the server and get a response.
    As mentioned above, serverlang holds the file extendion for
    the server side language. You can hard code the complete
    file name. */
    email_lv.sendAndLoad("tomail_mytest.asp", email_lv, "POST");
    Any suggestions will be appreciated. Thanks!

    More Information:
    --Deleted EAS account
    --Then did a Palm Backup
    --Then did a Partial Erase
    --Then (re) Add the EAS account
    --Then it synchronized
    --Now I can see the message body for "High Priority" emails but not any others...
    Suggestions?  Help?  Thank you.

  • Safari crashing! YouTube videos not loading! Message and email not loading! HELP!!!

    So a week or so after the newest update came out for the iPod touch 4 (IOS 5.1.1) my safari stoped working along with YouTube and email. When I tap on the safari app, it shows the search bar and just a blank open page from anywhere from less then a second to ten seconds then it suddenly crashes. This happens every time I try to open safari. What Happens with YouTube: I open YouTube and it will let me serch for a video to watch then when I click on a video to watch it just says it is loading and won't stop. If tested it and it will keep loading and won't stop. What happens with message and email: basically they just won't load any new messages  and won't let me send any either. Every other application that runs off wifi works just not those four. I've been connected to wifi and it won't work. If went to other wifi and it won't work. I've tried everything and it still won't work. Please help me! I really need it! :)

    Try the standard fixes:
    - Reset. Nothing was lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup
    - Restore to factory settings/new iPod.

  • Draft emails not deleting after sending via Mail.app

    When I compose an email a copy of that get auto saved in the Draft folder and should delete itself once I press send but that is not the case.  After I press send I can see a copy in my Sent folder AND in the Draft folder.  It only seems to happen with some emails that have attachments even with very small file sizes.
    Has anyone else had this problem and is there a fix? 
    Email is my business and I can't have unpredictable behaviour like this.  When I see the same message in my Draft and Sent folders its impossible to tell if it has actually been sent.  I have to follow up with a phone call to verify receipt.  Ridiculous!
    Here are my relevant specs:
    IMAP email service
    OSX 10.6.8
    Mail.app
    If you have a fix, thanks in advance.

    When I compose an email a copy of that get auto saved in the Draft folder and should delete itself once I press send but that is not the case.  After I press send I can see a copy in my Sent folder AND in the Draft folder.  It only seems to happen with some emails that have attachments even with very small file sizes.
    Has anyone else had this problem and is there a fix? 
    Email is my business and I can't have unpredictable behaviour like this.  When I see the same message in my Draft and Sent folders its impossible to tell if it has actually been sent.  I have to follow up with a phone call to verify receipt.  Ridiculous!
    Here are my relevant specs:
    IMAP email service
    OSX 10.6.8
    Mail.app
    If you have a fix, thanks in advance.

  • BT Email not loading on Chrome Browser

    I have not been able to get BT email to work on both Chrome and Internet Explorer so phoned BT and they fixed it remotley to work on internet explorer including adding the website into the compatibility view area on IE.
    However they told me the reason it didn't work in Chrome is it wasn't secure enough and that both Chrome and Firefox are insecure as apposed to Internet Explorer. If anything Internet Explorer is probably one of the most insecure browsers out of the lot so I can't understand why the email won't load via Chrome considering it is one of the most popular browsers. I don't get anything, just a white blank page.
    Thanks
    Peter
    Solved!
    Go to Solution.

    Hi peteyt
    are you a newish BT Retail broadband customer (if you are then you maybe on the new BT Mail), if your an existing customer you will still be on the BTYahoo mail system and platform.
    You can check by going to: http://diagnostics.bt.com/login/?workflow=EmailChecker
    I have just logged into my BT (yahoo) webmail sucessfully on Chrome, so shouldn;t be an issue.
    Have you tried deleting your cache and browser data and trying again? Also check if you have any chrome add-on or extensions which could be blocking it.
    Go to https://support.google.com/chrome/answer/95582?hl=en for help on deleting your cache and browsing data.
    Cheers
    jac_95 | BT.com Help Site | BT Service Status
    Someone Solved Your Question?
    Please let other members know by clicking on ’Mark as Accepted Solution’
    Try a Search
    See if someone in the community had the same problem and how they got it resolved.

  • Email not loading pictures

    When I try to load pictures as an attachment in an email, sometimes it takes 2 or 3 seconds. Other times it takes LITERALLY 20 minutes (I give up then) the wheel is still spinning. There are 2 or 3 pictures per email and each picture is about 928kg to 1.1 mb. I am NOT going over the limit.
    Why the delay? I do not have this trouble with yahoo or other email programs. Is there anything I can do different?

    johnsand9797,
    I'm not sure what you mean here: Are you inserting pictures into an outgoing email or are you trying to view them?
    If you are trying to view them, slow loading may have several causes. The most common would be that you are downloading them from your ISP and there is some delay due to virus scanning, a heavy traffic load, filters, or some other ISP-related reason; that the pictures are not embedded but linked, and stored on a third-party site that has a heavy traffic load or is scanning the images itself; or that your Mac is busy with other processes - if you have a lot of emails with family photos open, this would contribute.
    Since you're not the only possible reader, let's pretend for a few seconds that the images in question are not your family snapshots, but images obtained "free" from unsavory sources. It's not unknown for such images to be "bundled" with malware and scripts that attempt to install nasties. While Windows malware won't affect your Mac, certain platform-independent scripts will work.
    Yahoo is webmail, a totally different animal.
    -Wayne

  • Current email not loading

    From time to time, my email won't load or it loads old stuff.  Then I have to delete the email account and add again.  That happened today.  Now it won't load the last month of mail--only from August 2 and backward.  What to do?

    Who is your ISP?
    I had similar problems with both my iphone and ipad when using my wifi, but not when using cellular.  Turned out to be a Comcast issue with their implementation of DNSSEC validation. You can see my full explanation on my blog at http://blog.trif.com/?p=295.  The site is being blocked by Comcast because the Microsoft portal does not meet DNSSEC validation rules.  This applies to Comcast DNS Servers 75.75.75.75 and 75.75.75.76. 

  • Email not loading enough content

    I am not receiving but a few bytes of emails sent ot me. How do I download more email from my ISP POP service?

    go into settings-->mail-->show
    then you have the option of showing 25, 50, 75, 100, or 200. also, if you scroll all the way down in your inbox, there should be a button for "load 25 more messages".

  • Yahoo Business Email not able to send from devise

    I have searched for a solution to my issue and cannot find one. I receive emails on my devise from my Yahoo Business account but cannot send/reply to message from my devise. Verizon and Yahoo both say it's a BB issue and there is nothing they can do for me.
    Does anyone have a solution? The closest I found was to uninstall and reinstall my email but the issue is more than that. I suspect that it's an issue with the Yahoo Small Business account specs and security (POP, etc) When I access my email account on the internet, I go to a special site (not yahoo.com) http://mail.myemail.com.
    Thanks.
    Newbie BB user 
    Solved!
    Go to Solution.

    chk this: http://www.blackberry.com/btsc/search.do?cmd=displ​ayKC&docType=kc&externalId=KB12116&sliceId=SAL_Pub​...
    Click on KUDOS to appreciate our efforts and mark the thread RESOLVED if your issue is resolved.

  • Email not able to send

    Hi I am unable to send emails from my main email account even though can from a sub account. No settings are changed or different and used to work! This is on my ipad..

    Hi Dorastanding, 
    Welcome to the community and thanks for your post. 
    Please send me in your details using the "Contact The Mods" link found in my profile and I will take a look into this. 
    Cheers,
    OlgaC 
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

Maybe you are looking for

  • Need to lodge a complaint

    Hello,  I don't like to make formal complaints and generally avoid it if possible. However the customer service that I have received since placing my order has been unacceptable. My phone and broadband were supposed to be activated on 22nd but were n

  • Extracting Records from multiple tables

    hi I have to extract almost 1 lack  records from 3 tables. Please help me in ABAP CODE. PLease it is very urgent.

  • Seperating pages in a file

    i would like to be able to seperate an adobe document from 4 pages to 2 pages to send out via email.  I always download the latest versions and other friends say they do it under 'edit' and that my adobe page doesn't look like theirs.  karen

  • Help with a simple animation

    Hello everybody! I need a little help about an animation using Lingo! I need to make 8 sprites and make them look as a volume controler and then make two bottons ( " - " and " + ") and make it looks like that those two bottons controle the volume by

  • Can't Delete Previous Systems Folder

    I did an archive and reinstall some time ago, and got what I needed from the Previous Systems folder. So I tried to delete it (Secure Delete), and got most of it gone. What is left is a "Previous Systems" folder, with an "Previous System 1" folder in