Emails have no body

I have seen several questions about not seeing the body of emails, but nothing has helped my specific issue! My email host is Yahoo.  Most of my mail is fine, but sometimes when I receive emails from my school, there is a subject but the body of the email reads:
--0-1660935542-1006150416=:41149
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
And that's it.  It is this way on my iPad 2 as well as on my iPhone 4s.  I have done resets on both to no avail!

Ah, now i see that the folder has an icon on it - like a "settings" icon - sort of a wheel

Similar Messages

  • I have an email account on qou but all the incoming emails subject and body appear as question marks, why???

    I have an email account on QOU (al-quds Open University) but all the incoming emails subject and body appear as question marks, why???

    Try to set the Boolean pref <b>gfx.font_rendering.directwrite.use_gdi_table_loading</b> to <i>false</i> on the <b>about:config</b> page.
    *http://kb.mozillazine.org/about:config
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    Try to disable hardware acceleration.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"

  • HT3228 I have one of the origin iPads. Suddenly when I receive an email only the headings are shown - the body of the text is blank. Also previously received emails have also had the text body removed. Any suggestions as to what caused this?

    I have one of the original iPads. Suddenly (from yesterday) when I receive an email only the headings are shown - the body of the text is blank. Also previously received emails have also had the text body removed. Any suggestions as to what caused this?

    Try this.
    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.

  • Recipients of my email have been getting a bunch of scrambled code, letters and symbols, inserted into the body of my email - preceded by "span.IP". How to fix?

    Some recipients of my emails have been getting a bunch of code, letters and symbols, inserted into the email preceded by "span.IP". What is causing this and how can I fix it? Also (may be related) when i start up Thunderbird, I get the following error message:
    Secure connection failed
    live.mozillamessaging.com uses an invalid security certificate. The certificate is not trusted because no issuer chain was provided. (Error code: sec_error_unknown_issuer)
    This could be a problem with the server's configuration, or it could be someone trying to impersonate the server.
    If you have connected to this server successfully in the past, the error may be temporary, and you can try again later.
    Or you can add an exception…

    Browser Safeguard apparently attempts to intercept your secure connection to the server, so just uninstall it. Reboot your computer, and run a malware check.
    It's also possible that it issued certificates for secure sites you visit. Those self signed certs could then be used by IE, so you should get rid of them as well.
    In IE under Internet Options - Content tab click on Certificates. It opens to the Personal tab. Look for certificates issued by DO_NOT_TRUST_FiddlerRoot. Those are the ones created by Browser Safeguard.
    Both, Thunderbird and Firefox use their own certificate store independent from the Windows certificate store. So they should not be affected by those certs.
    For the future watch out for additional software being sneaked in when installing a program.

  • How do I send a page via email in the body of the mail and not as an attachment?

    I wish to send a page via email in the body of the mail. The only option to send a page appears to be to save it first and then attatch to the mail.

    When you are in the Plan View, right click on the icon for the page that you want to omit from the menu. Near the bottom, you'll see Menu Options, click on that and you'll have the choice to Exclude Page from Menus.

  • VBA: How do I add a shortcut to an email into the body of an appointment

    Dear all,
    I want to write a macro for outlook that lets me do the following:
    1. Move a selected email to a specific folder (with selection box)
    2. create an appointment in a non default calendar with the same subject as the email
    3. Put a link into the appointment body that links to the email (similar to the option that Outlook gives you when you drag an email onto the calender: "Copy Here as Appointment with Shortcut")
    Unfortunately step 3 (creating the link to the email) can not be recreated unsing QuickSteps. Therefore I have to solve this with VBA.
    Here is the code I came up with so far:
    Sub Mail2Appt()
    ' Moves each of the selected items on the screen to a selected folder.
    Dim olApp As New Outlook.Application
    Dim olExp As Outlook.Explorer
    Dim olSel As Outlook.Selection
    Dim olNameSpace As Outlook.NameSpace
    Dim olDestFolder As Outlook.Folder
    Dim intItem As Integer
    Set olExp = olApp.ActiveExplorer
    Set olSel = olExp.Selection
    Set olNameSpace = olApp.GetNamespace("MAPI")
    '1. Handle the movement of the selected emails
    'Display form to pick destination Folder
    Set olDestFolder = olNameSpace.PickFolder
    'To do: folder type validation
    If TypeName(olDestFolder) <> "Nothing" Then
    'Debug.Print vbCr & " olDestFolder: " & olDestFolder
    Else
    'Debug.Print vbCr & "Cancel"
    Exit Sub
    End If
    'Move selection to new folder
    For intItem = 1 To olSel.Count
    olSel.Item(intItem).Move olDestFolder
    Next intItem
    '2. Create appointment in To-Do-Calendar
    Dim myCalItem As Outlook.AppointmentItem
    Dim myToDoCalendar As Outlook.Folder
    'get non-default calender
    Set myToDoCalendar = Session.GetDefaultFolder(olFolderCalendar).Parent.Folders("Aufgaben-Kalender")
    For intItem = 1 To olSel.Count
    Set myCalItem = myToDoCalendar.Items.Add(olAppointmentItem)
    myCalItem.Subject = olSel.Item(intItem).Subject
    myCalItem.Location = "Office"
    myCalItem.Duration = 30
    '3. Place link to email in appointment body
    myCalItem.Body = "Hello World" 'Link to Email must go here
    myCalItem.Display
    Next intItem
    End Sub
    It would be great if somebody could push me in the right direction.
    Cheers,
    Sascha

    To Edit the body you need to invoke the WordEditor Inspector. You can then program the body as if you were programming in Word itself e.g.
    Add these declarations
    Dim olInsp As Inspector
    Dim wdDoc As Object
    Dim oRng As Object
    Dim strLink As String
    Then substitute your own link
    With myCalItem
    .Subject = olSel.Item(intItem).Subject
    .Location = "Office"
    .Duration = 30
    '3. Place link to email in appointment body
    Set olInsp = .GetInspector
    Set wdDoc = olInsp.WordEditor
    Set oRng = wdDoc.Range(0, 0)
    .Display
    oRng.Text = "Hello World " 'Link to Email must go here
    oRng.collapse 0
    strLink = "https://www.fedex.com/fedextrack/?tracknumbers="
    wdDoc.Hyperlinks.Add Anchor:=oRng, _
    Address:=strLink, _
    SubAddress:="", _
    ScreenTip:="", _
    TextToDisplay:="Fedex Tracking Site"
    End With
    Graham Mayor - Word MVP
    www.gmayor.com

  • Emails with no body

    Hello guys!, im having some trouble with the email sent from IDM, they dont have body, just all the header.
    Any ideas?

    Does your email template has body tag, if so you need to make sure you are filling the body section in your workflow.
    -sFred

  • NECE print type Email Text and Body not comming in Email

    Hi,
    We have maintain Email text and Body in NECE for email body.
    But while , we are checking in email , Invoice is coming as attachement, email body is not apprearing in email .
    what to do?
    Regadrs,
    Waqkas

    Hi Silvia,
    I have maintained text for email body in specific output type for Invoice
    In NACE transaction , in V3 Billing , I have Output type RD0M, in that I have maintained
    email Body.
    But on the time of generating the Invoice email for Vendor , only Invoice is going in email as attachement,
    Email Body which I have maintained in NACE is not coming .
    Any Suggestion ?
    Re,
    Waqkas

  • Why do some of my emails have blue squares with a question mark instead of a picture or bar code?

    Why do some of my emails have blue squares with a question mark instead of a picture or bar code?

    No app installed that will view the pics and bar codes.  
    Which email client are you using?  Which version? 
    File suffix of the pics & bar codes?  Example:  .pic, .bmp, .jpg, etc. 

  • I recently changed from a Mac Pro to an iMac. A large chunk of emails have disappeared. Time Machine is no help. Any ideas as to how I can get them back?

    I recently changed from a Mac Pro to an iMac. Despite using Migration Assistant, a large chunk of my recent emails and nearly all of my wife's emails have disappeared in transit. Strangely, emails from my distant past are still there. Time Machine is no help; the messages may be on my backup disc but they're behind an invisible  icon. Any ideas as to how I can get them back?

    Quit Mail. Force quit if necessary.
    Back up all data. That means you know you can restore the Mail database, no matter what happens.
    Triple-click the text on the line below to select it:
    ~/Library/Mail/V2/MailData/Envelope Index
    Copy the selected text to the Clipboard (command-C). In the Finder, select
    Go ▹ Go to Folder
    from the menu bar. Paste into the box that opens (command-V), then press return.
    A Finder window will open with a file selected. Move the selected file to the Desktop, leaving the window open. Other files in the folder may have names that begin with "Envelope Index". Move those files, if any, to the Trash.
    Log out and log back in. Relaunch Mail. It should prompt you to re-import your messages. You may get a warning that the index is corrupt and that Mail has to quit. Click OK.
    Test. If Mail now works as expected, you can delete the file you moved to the Desktop. Otherwise, post your results.

  • I have an imac with IMAP email. have managed to partially sync up my ipad in that I can receive the same emails that appear on my imac but I can't send from my ipad.  Any ideas?

    I have an imac with IMAP email. have managed to partially sync up my ipad with it in that I can receive the same emails that appear on my imac but I can't send from my ipad.  Any ideas?

    That sounds like a settings issue to me. Check with your IT depatment to make sure you have it configured properly.

  • HT3228 I upgraded from iPhone 4 to a 5 and my emails have duplicated.   Those I received and read on my Mac this morning have come in again and show unread so I have 2 of all of them.   Any idea what setting is causing this?

    I upgraded from iPhone 4 to a 5 and my emails have duplicated.   Those I received and read on my Mac this morning have come in again and show unread so I have 2 of all of them.   Any idea what setting is causing this?  Thanks.

    You may have to try deleting all the music from your phone (by going to Settings>General>Usage>Music, swipping All Music and tapping Delete), then sync it all back on with iTunes in order to fix this.

  • Transferred backed-up data from external hard disk to new hard drive on my MacBook Pro which seemed to be successful. I now find that some (or maybe all) old emails have been resent. Can anyone tell me what has happened?

    Transferred backed-up data from external hard disk to new hard drive on my MacBook Pro which seemed to be successful. I now find that some (or maybe all) old emails have been resent. Can anyone tell me what has happened?

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

  • How can I find my email in Apple Mail from before my company switched hosting providers?  People with Outlook have all of their old and new emails.  My old emails have vanished from Apple Mail.

    How can I find my email in Apple Mail from before my company switched hosting providers?  People with Outlook in my company have all of their old and new emails.  My old emails have vanished from my Apple Mailbox on my macbook and other Apple devices.  I do not have my mail backed up in time machine recently nor did I export my emailbox recently.  Any ideas?

    Try looking in your User folder.
    Either hold down the option key while using the Finder “Go To Folder” command and select your user Library in your home folder or use the Finder “Go To Folder” command and enter ~/Library/Mail/V2
    If you prefer to make your User library permanently visible, use the Terminal command found below.
    Show User Library
    You might want to bookmark the command. I have to use it again after every update. I have also been informed that if you drag the user library to Finder it will remain visible.

  • My iPhone 4s has suddenly stopped making a noise to tell me new emails have arrived, this was after an ugrade to IOS 7.1.2. It worked fine before and I didnt change anything but it just stopped dinging. I have checked Settings-Sounds

    My iPhone 4s has suddenly stopped making a noise to tell me new emails have arrived, this was after an ugrade to IOS 7.1.2.
    It worked fine before and I didnt change anything but it just stopped dinging when I got a new email.
    I have checked Settings-Sounds & Settings-Notification Centre and everything looks fine.
    It worked ok a couple of weeks ago but not after the latest update - anyone know why?

    Thanks Lawrence
    I omitted to say that it only occurs when the screen is locked - if I'm looking at something on my phone when an sms or email arrives, the phone 'notifies' me with a sound but doesnt do it when its screen is locked. Email messages and sms's (texts) still arrive but I get no sound to tell me they have.
    The MUTE swith is in the correct place and I have tried resetting the phone with the Home and Sleep buttons several times, still to no avail.
    I have noticed on the forums that many people are suffering or have suffered the same problem but Apple are never forthcoming, of course,

Maybe you are looking for