What happened to searching the body of emails in iOS 5?

Although Apple advertised it as a feature of the mail app in iOS 5, I am unable to search the body of emails.

It is there but it is AWFUL. It took at least 20 MINUTES to complete a search. I also switched to show last 1000 messages. I was hoping that would help, but it hasn't.
I can search on my webmail much faster than that.
I just tested this specifically for this post and Mail first found 2 then 4 messages in the 1st couple of minutes. Then after searching for more than 20 minutes it found about 7 more emails. Then after 23 minutes it finished searching and returned all 23 results. That is atrocious. And it takes the same amount of time no matter how many itmes you reperat the search.
Sometimes you just see the spinning gear in the menu bar and sometimes you see a searching message at the bottom of the screen too. Sometimes you see a message saying it is checking the server.

Similar Messages

  • Want to send a email with images and text in the body of email in iOS

    In iOS, we have written a code to send an email,  with embedded images and text in the body of the email ( not attachment) using mail composer. It works well with iOS devices like iPhone and iPad, but does not work in window based OS. Can anybody help. The code is

    Thanks James !, do you have an idea how to  find the window resource which I belive will be included in our appllication pack.
    In above  I have missed to copy the code,below is the code. This might help you to help me.
    NSMutableString *imgContent = [[[NSMutableString alloc] initWithString:@"<html><body>"] retain];
    UIImage *imageData = [UIImage imageNamed:@"Midhun.png"];
    NSData *imageDataInBase64 = [NSData dataWithData:UIImagePNGRepresentation(imageData)];
    NSString *base64String = [imageDataInBase64 base64EncodedString];
    [imgContent appendString:[NSString stringWithFormat:@"<p><b><img src='data:image/png;base64,%@'></b></p>",base64String]];
    [imgContent appendString:@"</body></html>"];
    MFMailComposeViewController *emailWin = [[MFMailComposeViewController alloc] init];
    [emailWin setMessageBody:imgContent isHTML:YES];

  • For some reason I now can not see the body of emails. It does show when I attempt tp reply to the email.  What has happened?

    I have been using my iPad for months.  Now for some reason the body of emails is not showing when the email is received.  If I hit reply, the body shows. Is there a setting I need to change?

    Reboot 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.
    Or quit the app completely. Go to the home screen first by tapping the home button. Double tap the home button and the task bar will appear with all of your recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button. Launch mail again.

  • AppleScript: Add a HTML file in the body of Email by the clipboard

    I would like to insert a HTML file into the body of Email by the clipboard action.
    This is my cord below:
    set the clipboard to (read (choose file) as «class RTF »)
    set theBody to "Hello"
    tell application "Mail"
    activate
      set theMessage to make new outgoing message with properties {content:theBody, visible:true, subject:"mysubject"}
    end tell
    tell application "System Events"
      tell process "Mail"
      set focused of UI element 1 of scroll area 1 of window 1 to true
      keystroke "v" using command down
      end tell
    end tell
    This code enables only rtf file rather than HTML.
    Also I don't want to use the html content by the function of Mail.
    Because if using it, you won't insert both  a html file and body at the same time.
    So what I would like to is to insert a HTML file by the clipboard action into a body.
    Thank you!

    Hi,
    One solution is to use Safari to copy the document:
    set x to choose file -- a HTML file
    tell application "Safari"
        open x
        delay 2
        repeat while source of document 1 does not contain "</html>"
            delay 1.5
        end repeat
        activate
    end tell
    tell application "System Events"
        tell process "Safari"
            set frontmost to true
            keystroke "a" using command down -- select all
            delay 0.3
            keystroke "c" using command down -- copy to clipboard
        end tell
    end tell
    set theBody to "Hello"
    tell application "Mail"
        activate
        set theMessage to make new outgoing message with properties {content:theBody, visible:true, subject:"mysubject"}
    end tell
    tell application "System Events"
        tell process "Mail"
            set focused of UI element 1 of scroll area 1 of window 1 to true
            keystroke "v" using command down
        end tell
    end tell
    Also try this:
    set the clipboard to (read (choose file) as «class HTML») -- a HTML file

  • FORMS IN go daddy - email forms, anyone know whats happening with c-panel and adobe email forms...

    FORMS IN go daddy - email forms, anyone know whats happening with c-panel and adobe email forms...

    Hi,
    Can you please provide the URL of your website ?  And also the email address to which you are trying to send the form.
    Regards,
    Rohit Nair

  • My computer broke and i lost all files including ITunes. what happens to all the stuff purchased already. will this appear in itues when i download it agian? how can i save the music on my ipod and transfere it over to the new itunes?

    my computer broke and i lost all files including ITunes. what happens to all the stuff purchased already. will this appear in itues when i download it agian? how can i save the music on my ipod and transfere it over to the new itunes?

    Unfortunely, all movies and songs purchased in iTunes will be lost...you'll have to purchase them again! Any applications you've purchased, you can download again for free.
    Music Rescue is a program you can use to transfer any and all data (music, movies, pictures..) from your iPod to your computer, and iTunes.
    http://www.kennettnet.co.uk/products/musicrescue/

  • Use standard text (SO10) in report(SE38) to compose the body of email

    hello experts,
    here i wanna create the body of email with a format, hence i decide to use Standard Text. in this Standard Text, i also maintain some variable such &p_name&( i remember it works  in forms,such script and ssf), while i define p_name as 'demo' in the program and try to transfer p_name to standard text, it fails. while i check the output of standard text, it show &p_name& instead of demo.
    could anyone tell me how to realize this function?
    Thanks in advance.
    Desmond

    Hi,
    try this,
    data:w_field(10) type c VALUE '1234'.
    DATA:wa_head TYPE THEAD.
    data:it_final TYPE TABLE OF tline.
    wa_head-tdname = 'Z_SAMPLE'.  u201CStandard text,refer screen shot
    wa_head-tdid = 'ST'.
    wa_head-tdobject = 'TEXT'.
    wa_head-tdspras = 'EN'.
    CALL FUNCTION 'READ_TEXT'
      EXPORTING
      CLIENT                        = SY-MANDT
        id                            = wa_head-tdid
        language                      = wa_head-tdspras
        name                          = wa_head-tdname
        object                        = wa_head-tdobject
      ARCHIVE_HANDLE                = 0
      LOCAL_CAT                     = ' '
    IMPORTING
      HEADER                        = HEADER
      TABLES
        lines                         = it_final
    EXCEPTIONS
      ID                            = 1
      LANGUAGE                      = 2
      NAME                          = 3
      NOT_FOUND                     = 4
      OBJECT                        = 5
      REFERENCE_CHECK               = 6
      WRONG_ACCESS_TO_ARCHIVE       = 7
      OTHERS                        = 8
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'REPLACE_TEXTSYMBOL'
      EXPORTING
        endline                = 10
      FORMATWIDTH            = 72
      LANGUAGE               = SY-LANGU
      LINEWIDTH              = 132
      OPTION_DIALOG          = ' '
      REPLACE_PROGRAM        = 'X'
      REPLACE_STANDARD       = 'X'
      REPLACE_SYSTEM         = 'X'
      REPLACE_TEXT           = 'X'
        startline              = 1
    IMPORTING
      CHANGED                = CHANGED
      TABLES
        lines                  = it_final

  • Sorry but I think this wrong, I know that in Colombia there and two of the three operators already have 4G/LTE networks, what happens is that the iPhone should be expected to send the update software for computers that have this tercnologia activate them,

    sorry but I think this wrong, I know that in Colombia there and two of the three operators already have 4G/LTE networks, what happens is that the iPhone should be expected to send the update software for computers that have this tercnologia activate them, that my Iphone or receiving 5 supports 4G LTE,
    Thank you for your attention

    Apple needs to test the carrier if they offer LTE as expected.
    If your country/carrier is not on the list then there's no LTE on your iPhone.
    http://www.apple.com/iphone/LTE/
    It's between the your carrier and Apple. There's nothing you can do except feedback to Apple:
    http://www.apple.com/feedback/iphone.html

  • I have just purchased an app, and paid my money, what happens now will the app be mailed to me or ?? as nothing seems to be happeneing

    i have just purchased an app, and paid my money, what happens now will the app be mailed to me or ?? as nothing seems to be happeneing

    Apps are automatically downloaded and stored to your Applications folder. Check there...
    Which Mac OS X are you running?

  • Content of SMS is not included in the body of email when shared/forward as

    Sir,
    When forwarding SMS as email, the content of the SMS is stored as an attachment called <primary_text.txt> file, it's double pain since the receiving person can not read the attachment via Z10 since the device can not open *.txt> file extension.
    If it's possible, please restore this functionality back to the way of OS 6/7, which put the content of the SMS in the body of email, since I do rely on this feature heavily.
    Leo 

    nyet wrote:
    Sir,
    When forwarding SMS as email, the content of the SMS is stored as an attachment called <primary_text.txt> file, it's double pain since the receiving person can not read the attachment via Z10 since the device can not open *.txt> file extension.
    If it's possible, please restore this functionality back to the way of OS 6/7, which put the content of the SMS in the body of email, since I do rely on this feature heavily.
    Leo 
    How exactly are you trying to forward an SMS as an email?
    You can forward the SMS to an email address of your choice and that`s when your SMS will be converted to MMS, and sent to the email address of your choice . The recepient should get your message as "[email protected] carrier.com   
    Another way of doing it is to select "Share" instead of forward. Then a list of options will open that includes your email address. Select your email address and the selected text message will be added as "body.txt" and after this, you just have to enter the recepient email address and subject line (optional).
    The recepient will receive the email with a "body.txt" attachment that can be downloaded and open in or with the "Notepad" on PC

  • HT201210 i have 3G since 3,5 years now, what happened yesterday for the 1st time since ever - is that the phone has

    Hi everybody!
    I have 3G iphone since 3,5 years now, what happened yesterday for the 1st time since ever - is that the phone has switched off itself even when was charged n since then it refuses to reboot ! Indeed, application says - Enjoy your jailbroken phone ! What would that mean ? Any chanses to get that phone On ? (or does it mean the phone gone old n i should get a new version of iphone ?) 
    Thanks in advance !

    That means your phone is jailbroken and you can not get help here.

  • I ran the Adobe installer for CC desktop and it failed.  Error: 50   What happened?  Now the Run.exe file is gone.

    I ran the Adobe installer for CC desktop and it failed.  Error: 50   What happened?  Now the Run.exe file is gone.

    Hi,
    Please refer to the thread below where this issue has been discussed:
    Error code 50
    Regards,
    Sheena

  • How to search the Body

    Please guide how to search the Body to add more TAB in CIN Details.
    Regards,
    Manish Jain

    I wanted to add more TAB in CIN details for Excise Range & Division address

  • What happened to all the patterns I defined? They are all gone!

    What happened to all the patterns I defined? They are all gone!

    Did you save them did your Photoshop preferences get reset without knowing what been happening on you machine there is no way can know we could only venture a guess.
    Supply pertinent information for quicker answers
    The more information you supply about your situation, the better equipped other community members will be to answer. Consider including the following in your question:
    Adobe product and version number
    Operating system and version number
    The full text of any error message(s)
    What you were doing when the problem occurred
    Screenshots of the problem
    Computer hardware, such as CPU; GPU; amount of RAM; etc.

  • What happened to all the Library and application support folders in Yosemite? How can I access them?

    What happened to all the Library and application support folders in Yosemite? How can I access them?

    1. They’re still there, but hidden.
    2. Open your home folder, choose Show View Options from the Finder’s View menu, and check the box to show the library.
    (118426)

Maybe you are looking for

  • 5577 songs in itunes...5568 on my ipod??

    The title is the question really. I add more songs regularly but my ipod is always nine or ten songs behind. Not a problem just interesting. Thanks

  • Airplane Adapter for MacBook Pro?

    Does anyone make an airplane power adapter for the Macbook yet? I have read elsewhere, because of the magsafe adapter, that none of them will fit? Anyone know the answer to this question?

  • French accented characters not translated during decodeIncomingMessage

    Hello, Our b2b.log displays the correct French syntax during the decryption process after receiving message from our partner. "oracle.tip.adapter.b2b.exchange.ebms.EBMSExchangePlugin:decryptAndVerify Enter" example = È But the French characters trans

  • How can I use ResourceBundle's property file in Chinese

    Hi, I want to internationalize my web application using utils's ResourceBundle I created property files for each languages. The problem is I can't retrieve the Chinese word from the bundle and tit get changed. messageBundle.properties Hello = 我们欢迎您来W

  • Audio issues on ichat

    I have a Macbook 1.83 and am trying to use ichat with my sister who has a G4 computer. She can see my video and hear my audio without a problem. She has a logitech webcam messenger hooked up via usb. After much trial and error I was finally able to s