Iphone 4 how can i select all mail in my inbox ?

Hello,
I have a new i phone 4 with the iOS version 4.3.5, when i'm in my inbox of my account, i just can select one by one and delete my message only one at a time. But i have a lot messages, his there a way to check all message when i click on 'Edit'' ??
Thanks
Pascal

I know someone will chip in that there is a place to suggest enhancements for iOS devices ( and that this isn't it )..but this would be a nice feature..to be able to select multiple emails...the Blackberry may be a crummy camera and music player, but at least you can select and delete multiple emails.....

Similar Messages

  • How can I select all messages in Inbox, Trash and/or Bin in one go to delete them.  I currently have 3000  unwanted messages in my Bin box and wish to delete them without having to individualy select them 50  at a time.y

    How can I select all messages in either my Inbox, Trash and /or Bin in one go to delete them all in one go.  I currently have 3000+ unwanted messages in my Bin

    Click on the inbox then Edit>Select All (if you are using Mail, if not you'll have to tell us which mail program you use) repeat in other mailboxes as needed.

  • HT201274 hi, I want to sell my iphone, how can I delete all contents? many thanks

    hi, I want to sell my iphone, how can I delete all contents? many thanks

    Settings > Messages > iMessage > Off
    Settings > FaceTime > Off
    Settings > iCloud > Delete Account
    Settings > General > Reset > Erase All Content and Settings

  • How can i autoforward that mail from SAP INBOX to the outlook

    Hi ,
    My Requirement is that,
    I have to send an email to outlook, whenever PO Created in SRM System
    I have created  custom workflow, i have added a sendmailtask step, i given the SAP userid to send SAP Mail to the user.
    It is sending SAP Mail to the User to his inbox perfectly.
    Now, how can i autoforward that mail from SAP INBOX to the outlook. This is has to work for all users.
    Please give some suggestions. ot it can be achived any other way.
    Note: This is Email Message not a workitem.
    I have doubt that RSWW program will work only for workitems.*
    Thanks & Regards,
    Suresh.

    Hi ST,
    what I understand from your requirement is that you are able to send messages using SendMail Step to SAP Inbox and now you want it to be sent to users Outlook.
    Here you need to create a container which would store users email address of Outlook (which would be stored in SU01 or in a ztable), use this container in your Send Mail step and in the Recepient Type as email.
    Hope it helps.
    Aditya

  • TS4062 How can I remove ALL MAIL from my message service to stops having to remove  1000's of messages by going to edit and removing individually

    Can I remove all mail messages without doing all individually

    THis is a reply to my own question, so that I can upload the Print Screen image of my browser toolbar. Look for "Hello World!" at the top, just above my address bar. Thanks again to anyone who can help me remove this from my menu bar.

  • How can I mark ALL mail read in Mail?

    For the past few months my mail program has constantly said that I have two unread messages in it. I have gone through every folder on there and selected all the messages and marked them as Read but there is still a "2" on the icon in the Dock. It's not a huge deal but it's been kind of bugging me since it seems like it should be a simple fix. Anyone have any ideas for how I can get rid of this? Is there a "Master" way to to mark all messages read in the Mail program, in case I'm missing some somewhere? Thank you in advance.
    I'm not sure if this helps but the email account that it says the "2 unread messages" are in is a school Outlook account. I have tried deleting the account and readding it and the same "2 unread messages" notification is still there.

    In mail enter "unread" without the quotes, in the search box. HIt the Enter key.
    You will then see a new item appear, "Status: Message is Unread"
    Select this status and all your unread messages will appear.

  • How can I select all subject related messages from Inbox and Sent folders

    L&G,
    is there any way to select messages containing the same subject from the Inbox and the Sent folder by means of an keyboard shortcut. I.e. I would like to select a message in the Inbox folder and request Mail to display all related mails.
    Thanks in advance for your support.

    not like this. you can do a subject search inside one mailbox or in all mailboxes at once. you can not restrict a search to two mailboxes. even when searching one mailbox you have to enter the search string in the search window. there is no shortcut that will do it for you.

  • How can I select all stamps in a PDF file without having to click on each individual one?

    I use the stamps and text box feature to mark up engineering drawings in abobe acrobat 10. Sometimes revisions come for already worked on drawings so I need to transfer my work over. Usually I just hold control and click each stamp and text box then hit CTRL+C to copy all of them. However, sometimes there are 200+ stamps on a single PDF and clicking each and every one without letting go of CTRL is a lot harder than it sounds.
    Any ideas on how to do a "select all" function? (the actual select all doesn't work in this case, it looks for words.)
    Thanks

    Stamps are basically comments. As such, they appear in the Comments List,
    where you can easily select them by clicking inside the list and then
    pressing Ctrl+A.

  • How can i select all RAR archives in a folder and it's subfolders?

    so that i can quickly move them all into the same folder to unarchive them. This is after i've decompressed a bunch of zips. Unless someone can tell me how to get 'the unarchiver' to be less dumb, and find the other pieces on it's own. I am constantly getting audio and video in this stupid file arrangement, obviously the work of an evil windows warlock.
    like this
    [folder]
    somefile.xyz.01
    [folder]
    somefile.xyz.02
    [folder]
    somefile.xyz.03
    and so on. It is driving me completely crazy because it seems like it should be such a natural thing to tell the OS- 'hey, select all the files all the way down into all the subfolders within this folder that are like this one.'
    i will set up a shrine and tell tales of your greatness througout the land if you can help me figure this out.

    Here's what you do...
    open a console window at the root directory that contains all of the .zip files.
    After you open all of the zip files you'll have a directory full of subdirectories that contain your .rar files.
    Make sure your console window is pointed at the root. If you type "ls" (without the quotes) in the console you should get a directory listing showing all of the subfolders.
    Now type this command into the console:
    find ./ -iname "*.rar" -exec mv {} ./ \;
    This command will recursively find all of the .rar files within the parent directory and then move them to the root level of the parent directory.
    Now all of the .rar's will be at the same level and you can use your tool of choice to unrar them.
    OOPs, I meant terminal window, NOT console window.
    After I wrote this response I put together a little automator workflow and saved it as a service. Seems to work well. Just open automator and create a service. Specify that the service accepts folders from the finder. Then add a single component which is "run shell script". Set the shell script to pass input as arguments. The shell script should be set to contain this:
    for f in "$@"
    do
              cd $f
              find ./ -iname "*.rar" -exec mv {} ./ \;
    done
    Save with a service name: I use "unrar subfolders".
    Now you simply right click on the parent folder that contains subdirectories that have segments of .rar archives. Pick the service that you created and the magic will happen and all .rar files will be at the parent level. Make sure you right click the parent folder and not just one of the .rar subfolders, that won't work.
    This script can easily be modified to also do the unzip step and clean up afterwards but I like to keep my actions simple and short to avoid unintended consequences.
    Those of you following along might notice that the script in fact can operate on several folders so if you select a set of folders and right click it should process all of them in turn. I haven't tested that!
    The useful trick that can be used again and again is the "find ./ ########### -exec ####### ./ \;" sequence. This will recursively search from the current parent directory and execute another command on everything that the search finds. The search can be as complex as you like as can the execution step. Just make sure you really know which directory is the current parent because you can easily wind up firing this up from your account root or even system root and do nasty things!!!!!

  • I have a new iphone, how can I move all apps, from old iphone to the new one?

    I change my iphone 4 for a iphone 5. How can move all the apps to the new cell?

    Old Phone to New Phone
    http://support.apple.com/kb/HT2109

  • How can I select all images in a folder without subfolders?

    Either I am looking with my nose (as we would say in The Netherlands) or it is not possible:
    I have a folder A with images and in that folder there's a subfolder B. I want to rename all the images inside folder A so I want to select them all to begin with. However, clicking on folder A in LR also show all the images in folder B and therefore CTRL-A also selects them all. Now, how can I only select the ones in folder A?
    Danny.

    Winston's example certainly provides a method for the situation you described, but it doesn't help if you have multiple, nested subfolders. But my piece of advice is to be patient. Things will get better on this front.
    - Pierre

  • How can I see all mail associated with my account simultaneously

    My boss has tasked me with finding a way to be able to see all sent & received mail associated with an account in mail simultaneously. InBox, Sent, Trash, Drafts, all at once, is that possible?
    Thanks

    Hello!
    If you want to see all of that in a single mailbox, you can create a Smart Mailbox from the "file" menu in the top left corner of your screen. It's a bit of trial and error before you get the rules correct, perhaps, but that will work.

  • How can I select all "Related Messages"

    When I click on a message the application highlights all related messages in list view.
    I like to select these highlighted messages in one shot and delete or move them. Is there an easy way to select them without going one by one and Command-click selecting them?

    I have also found that if you have other emails, say in the sent folder, you can actually select (command-click) multiple mailboxes on the left pane and it mashes both mailboxes together, and then the 'conversations' have both sent and received emails in that thread.

  • [E2007] [EWSMA] [C#] [Windows]: How can I retrieve all mail sent via this Exchange server (during a time period)

    Hi there,
    I'm quite new to Exchange and I'm not sure how to do this.
    I've been looking at both push and pull mechanisms. 
    The query is conceptually simple. I can do it for one user, I think:
    var filter = new SearchFilter.IsGreaterThanOrEqualTo(ItemSchema.DateTimeSent, after);
    var folder = Folder.Bind(exchange, WellKnownFolderName.SentItems);
    var results = folder.FindItems(filter, new ItemView(1000));
    ....but I'm not sure how to it for all users.
    Many thanks!

    Hi,
    This may be another option for you...
    Is your Exchange hosted for you / Office365 or on premises?
    If it’s on premises and you have storage space you could use a Transport Agent (and specifically a Routing Agent).
    Using an agent you can take a copy of ALL email going in and out of a server (that's the whole email not just the headers or a log entry for it), then all you need to do is store it somewhere. I'd suggest just store it on file with an index (with date information
    and the path to the email on disk etc) in a SQL database. Then when you need your "emails in a date range" simply run a query against your SQL database to get the list of emails. You can always run a batch job every now and then to remove emails older than
    a certain date.
    If your Exchange is hosted (or you are not allowed to install software on the server) this won't be an option.
    Regards,
    Scott
    Scott Quinn | C# developer & messaging specialist (for hire). Contact me at http://au.linkedin.com/in/scottquinn

  • The font i used in my KEYNOTE presentation is not available when you upload it to the cloud.  So, now my  text boxes are all messed up.  How can I select ALL font boxes of presentation and change (at least) the font style?

    I have a large presentation that I need to access from the cloud THIS SATURDAY.  Now, after uploading from my iMac to Cloud, the font is all messed up because the font I selected on my mac is NOT available on the Keynote Cloud....so capitalization is wrong, inconsistent, etc.
    Is there a quick way to select all text and change the style?  Help..I am running out of time!

    What's the URL of the page?
    In the mean time clear the cache and reload the page.

Maybe you are looking for

  • Header and footer diplayed two times...

    Hi All. I have a problem that header and footer are displayed two times. I have two header jsp's one is header.jsp and the other one is header1.jsp. Firstly I used this shell which displayed just one header.jsp in the header panel.... <netuix:markupD

  • Cannot connect to Azure Mobile Services as DataSource

    I've created an Azure Mobile Service which is using .NET backend. Project Siena isn't able to connect or work against this kind of data source. Error message is An error occurred connecting to Azure Mobile Service I have also tried to create zz_confi

  • Green screens at the beginning of each iMovie chapter

    I've seen lots of discussion about green screens related to slideshows and transitions; however, I'm seeing them on finished DVD's when using chapter markers and navigating from the select scene menu. They're usually no longer that a couple of second

  • Communicate with java through javascript [accessControlException]

    all right I have an applet with this method in it: public String getText() throws UnsupportedFlavorException, IOException { Clipboard clipboard = getToolkit().getSystemClipboard(); Transferable contents = clipboard.getContents(this); return contents.

  • Recording on I Mac

    Hoe kan ik zelf een instrument (baritonsax in mijn geval) opnemen in Garageband. Moet je dan een microfoon aansluiten of wat? Ries van Dorst