I cannot delete emails on my new i pad

I cannot figure out how to delete emails from my new Ipad. i continue to get a message "unable to move message"

Try going into Settings > Mail, Contacts, Calendars. Then select the account on the right-hand side of that screen, select Account, then Advanced, Deleted Mailbox, and under On The Server tap the 'Trash' folder (or whatever it is called by your provider) so that it gets a tick against it - then come out of that series of popups by tapping on the relevant buttons at the top of them and then see if you can delete emails.

Similar Messages

  • I cannot delete emails I have a iphone 3GS running IOS 6.0.1

    I cannot delete emails, I have an iphone 3GS runningIOS 6.0.1. I tap edit and the red circle appears, but no delete rectangle or dustbin appears

    AT&T does not issue unlock codes for iPhones.  I had to think a minute, because I never had a 3GS myself, and thought it might have been different for them, but my daughter had one, and the unlock process is the same as for the 4.  After AT&T approves the unlock (which means the contract has been fulfilled), they notify Apple.  AT&T then sends the phone's owner an email detailing the process to unlock the phone, which consists of backing up the data, then restoring the phone as new in iTunes (which is where the unlock comes in), then restoring the data backup and then syncing.  I went through this to unlock my AT&T iPhone 4.  SO, I'm not sure what the unlock code business is about, except that it doesn't sound legit.

  • Cannot delete emails: no circle to check for delete

    More often than not I cannot delete emails from my iPhone.  When I choose edit no circle appears to allow me to delete emails.
    Any advice is appreicated.

    You can also delete the messages by swiping your finger to the right and the delete button should appear. However, if the way to delete is not appearing when you touch the edit button, you need to try some troubleshooting steps.
    First, power the iPhone off/on. See if that fixes it.
    If not, then reset the iPhone. Do this by holding the sleep/wake and home buttons together until you see the Apple logo, then release. After the iPhone restarts, try again.
    If not, then a restore is next. Restore from a backup in iTunes. If no better, then restore as a new iPhone.
    The reset has no affect on your data. A restore from backup does not affect data, however restoring as a new phone will delete everything off the phone. You will have to resync all of your data back to the phone.

  • Cannot delete email.  Selected edit. Selected email and red circle with white check appears.  BUT, options at bottom of screen do not appear.  Help.

    Cannot delete email.  Selected edit.  Selected email and red circle with white check apprears.  BUT, options at borrom of screen DO NOT APPEAR.  I just get a grey band across he bottom of the screen.

    Correction: the "Move" button is blue, not green.

  • I cannot delete emails on iphone 5

    I cannot delete emails on my iphone5. I do not have the delete button visable either while trying to delete on email on batch.

    Not clear what you are asking,  There is no "batch" delete option for the Inbox - all emails have to be deleted individually.  Only the Trash folder has a "Delete All" button shown after touching "Edit"
    To delete individual emails, swipe finger across the preview and "Delete" will show, or select "Edit" on top right and select each one you want to delete.

  • I cannot receive emails to a new email address on my iphone 4

    I cannot receive emails to a new email address on my iphone 4. It is coming up with the message "cannot get mail. The Mail server ..... is not responding. Verify that you have entered the correct account info in Mail settings"

    more info please?
    internet mail accounts will set up easily.   If your email is a hotmail, outlook, godaddy, or other email, you have to setup from both email end and the settings on your iPad.

  • Since last update I do not have a "delete" button showing on a toolbar. Therefore, I cannot delete emails without opening them. Please help.

    Since last update I do not have a "delete" button showing on a toolbar. Therefore, I cannot delete emails without opening them. Please help.

    Ask Apple to re-enable it. I had an unauthorized purchase last October. They disabled my account until the problem was solved. However, I asked them to reopen it, and they just asked me to provide some security information (billing address, a recent purchase you made, etc.), and then they re-enabled it.

  • TS3899 cannot delete emails on iPhone 4s

    cannot delete emails on iPhone 4s

    Not clear what you are asking,  There is no "batch" delete option for the Inbox - all emails have to be deleted individually.  Only the Trash folder has a "Delete All" button shown after touching "Edit"
    To delete individual emails, swipe finger across the preview and "Delete" will show, or select "Edit" on top right and select each one you want to delete.

  • Cannot delete emails in Thunderbird

    I cannot delete emails from thunderbird. The client gives me an error "The current operation on 'inbox' did not succeed. The mailserver for [MYACCOUNT] responded: [TRYCREATE] The requested item could not be found." What does this mean? This is using IMAP FYI.
    Thanks in advance for any help,
    -Steve

    I found how to fix it here:
    http://wiki.sourcemage.org/HowTo%282f%29ChangeIMAPTrashFolderInThunderbird.html
    Unfortunately, I cannot delete the other "Trash" folder now. How do I delete it?

  • Cannot delete emails

    Hi,
    I sent some emails with large attachments (up to 10MB) copied to me and one of them appears in the inbox in a pale orange colour. I cannot delete these large messages nor any other messgaes. Every time I delete a message, it reappears back.
    I cannot receive email messages into my mail account on my computer, but I can see new emails on my iphone. I have 6 email messages that I can read on my iphone that I haven't rec'd on my computer.
    I am using gmail as my email server. I also tried going into my gmail webmail and deleting the large emails but they keep appearing back.
    In addition, my Mail keeps crashing.
    Thanks,
    Aarti

    Messages > Menu key > Saved Messages, are they in this folder as well?
    You can update your profile here to provide your BlackBerry device model and carrier name, so that when you have a question, that information won't need to be asked up front. Click on My Settings > Personal Information and then SAVE at the bottom of the page.
    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

  • EWS 2010 Managed API Cannot delete email if scheduled via extended properties

    I  have code that schedules an email as below:
    Scheduling Code:
     _ExchangeService.Credentials = new WebCredentials(_UserName, _Encrypt.getEncryptedValue(),_Domain);
    _ExchangeService.AutodiscoverUrl("[email protected]");
                this.ScheduleRequest = bAddScheduling;
      try
                        EmailMessage message = new EmailMessage(_ExchangeService);
        //set message properties
       //add scheduling     
    message.SetExtendedProperty(PR_DEFERRED_SEND_TIME, ut);
    message.SetExtendedProperty(PR_DEFERRED_DELIVERY_TIME, ut);
    if(bAddScheduling)
      message.Save(WellKnownFolderName.Outbox);
    message.SendAndSaveCopy();
    Delete Code:
        ItemId id = new ItemId(ID);
                EmailMessage current =  EmailMessage.Bind(_ExchangeService, id);
                try
                    current.Delete(DeleteMode.HardDelete);
                catch (Exception e)
                    throw e;
                    //string ex = e.ToString();
                    //_COMPlusExceptionCode = -532462766
                    //[Microsoft.Exchange.WebServices.Data.ServiceResponseException] = {"Object cannot be deleted."}
    Scheduling seems to be working just fine.  My problem is that I want to enable the deletion of a scheduled email and when I try to delete I receive "Microsoft.Exchange.WebServices.Data.ServiceResponseException: Object cannot be deleted."  If I
    just save the email and do not send it I can delete it programatically.  If I make a call to Send or SendAndSaveCopy after saving the message I always receive the object cannot be deleted message.  I can log into the mailbox as the service account
    and delete it just fine.  I am stumped please help.  

    I am having this exact issue.  Does anyone from the exchange team at MSFT have any guidance on this matter?  This thread has remained unanswered for 3 months.
    Thanks in advance.

  • Cannot send emails from my new ipad but can receive them. iPhone 5 ok. Both iOS 6

    Can't send emails from my new ipad but can receive them. I've checked the settings and username and password are setup correctly. My email account is with tiscali. My iPhone 5 is setup the same but works ok.

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    Setting up and troubleshooting Mail
    http://www.apple.com/support/ipad/assistant/mail/
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Try this first - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    Or this - Delete the account in Mail and then set it up again. Settings->Mail, Contacts, Calendars -> Accounts   Tap on the Account, then on the red button that says Remove Account.
     Cheers, Tom

  • Cannot delete emails on iPad

    Could someone please let me know how to remedy this problem I am having with
    My mails.
    A pop up message appears alerting me that it cannot move mails to trash?

    Hello, Joe. 
    I would recommend closing any open applications in multitasking and restarting the device.  If unfamiliar with multitasking, I have included an article that walks you through the process of an application close.  Test the results after processing these steps.
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    If the issue persists, see the article below.
    iPhone and iPod touch - Unable to delete email messages
    http://support.apple.com/kb/ts2475
    Cheers,
    Jason H.

  • Cannot Delete Email Messages after Update

    After installing the newest OS update I cannot delete my email messages using the delete keyboard button or using the onscreen options.  The delete screen does open up but the delete option is greyed out.  I am able to delete messages by using select more and then delete.
    Solved!
    Go to Solution.

    I have the same problem affecting 3 different email accounts on my q10, one of which is a corporate account requiring IT support to reinstall. This solution is not practical for me. Any better ideas? I knew I shouldn't have done the upgrade. Another reason to regret not switching to an iPhone!

  • Cannot delete email

    After having my phone replace everything was restored and fine except for being able to delete emails.  I am getting a message saying items cannot be transferred to the trash.  Any ideas?

    OK, maybe 'extreme' was a poor choice of words, but it is a bit of a hassle in our environment since we are using smart cards for log ons to our Exchange server. This means the administrator (me!) has to assist the user in re-creating the account with information from the card that is normally scanned in. I just hope this doesn't become an ongoing problem. Is anyone at Apple looking into the cause of this glitch?

Maybe you are looking for

  • AT200 service station does not detect the serial number

    Good morning, I wanted to update my AT200 Android 4 But I do not think works the service station and you do not recognize or model or part number and serial number, there would be some way to insert it or update it, you could do?

  • Stock variation consumable materials".

    Hi, stock variation consumable materials for which key it should be assinged in IN FI-MM Intigration T.Code OBYC? Please help me Thanks   POLA

  • AWR Top Events Report

    Hi All, 11.2.0.1 Aix 6.1 I got this awr top events report. Can you help me how to interpret this please. Or what value to watch out here?  Thanks a lot                                                                                                   

  • Migrating NI-CAN applicatio​n to NI-XNET delphi

    I want to migrate a NI-CAN application to NI-XNET. My application run on a NI-PCI-CAN series 2 and i need it work on a NI PXI-8512 . I develop with delphi. I followed the "Migrating NI-CAN Applications to NI-XNET" tutorial : http://www.ni.com/white-p

  • Create a Link to another (custom) Report

    Hi guys, I'm back again as I'm stuck with trying to create a link between two custom reports. I'll make it simple, this is the current result when I run the main custom report: This is its query (I removed all the exlusions to make it short): SELECT