Can not open attachments on recieved emails

Adobe does not allow me to open attachments recieved on emails.

You mean company Adobe does not allow you to open attachments received on emails? Or is it a specific product you're using? Which one, which version (including minor), which platform/OS? Which mail client do you use? Is it Web-based (like gmail)? What is the exact manifestation of your problem? Are attachments that you're getting PDFs? Do you download them to your computer before you try to open them?

Similar Messages

  • FF 12 does not open attachments for yahoo email

    FF recently updated and since then I have not been able to open attachments in yahoo email.
    I know it's FF because it does not happen in IE or chrome.
    I have used FF for years and it is my browser of choice. However if I can not address this issue I will have to pick another browser.

    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

  • Can not open attachments or sometimes send attachments

    Unable to opoen e-mail attachments and when sending an attachment receivers report unable to open.
    long time for printer to sometimes start.

    You mean company Adobe does not allow you to open attachments received on emails? Or is it a specific product you're using? Which one, which version (including minor), which platform/OS? Which mail client do you use? Is it Web-based (like gmail)? What is the exact manifestation of your problem? Are attachments that you're getting PDFs? Do you download them to your computer before you try to open them?

  • HT1222 7.0.6 has started to download days ago and seems to have malfunctioned. Showing as still downloading and can not open sites through my emails eg Tesco email can not access by tapping screen etc. what can I do?

    Hi, I need advice - 7.0.6 security  update has been showing as downloading for days, obviously malfunctioned. Can not open email links etc and don't know how to cancel as not responding. What can I do?

    Hi Glennie,
    Please see: http://support.apple.com/kb/HT1808 which should be of assistance to you.
    Regards,
    Steve

  • I can not view attachments in html email

    I am currently having a problem with Outlook 2011, basically when I send emails from windows, when I receive an email in HTML I can not see any attachments if you receive in plain text if I can see them. Someone had this problem before?

    Ok, now they are showing. I restarted my computer again and they are showing now.

  • Equium M40X - Can not open IE7 or sent email

    I am using WXP home SP3 and the latest Atheros AR5005GS Wireless Network Adapter on my Equium M40X, and have no problem with creating wireless
    connections .
    But when I connected on to my Wi-Fi, and try to open IE7 or sent email from my office 2007 outlook the *"Connect To"* window appears but as it only as my dial up connections are displayed I cannot open my IE7 etc, however I can connect to my firefox browser as it not the default
    As I need to use both my dial-up & wifi can anyone help me sort out as to why I am having this problem.

    Hi!
    This is strange but have you installed all updates for your Windows?
    Maybe you should reinstall the notebook with the Toshiba recovery disk or you have a virus or something else on your computer. Update your antivirus program and let it scan for viruses.
    Bye

  • Can not open pdf attachment in email (SBWP)

    Hello Expert,
    I created a program to covert a form to pdf format, then, send it to SAPoffice (SBWP) as an attachment successfully. But I cannot open the pdf attachment. I don't know the reason. Could you please give me some suggestion?
    use function module 'CONVERT_OTF_2_PDF' to convert pdf format
    use function module SO_NEW_DOCUMENT_ATT_SEND_API1 to send email.
    points will be assigned for Helpful suggestion.
    Thank you.

    Thanks.
    I have tried to download it into my local computer, the downloaded pdf file can be open correctly. So it's the problem in my program.
    Below is my program, thanks a lot.
    DATA: itcpo LIKE itcpo,
          tab_lines LIKE sy-tabix.
    Variables for EMAIL functionality
    DATA: maildata LIKE sodocchgi1.
    DATA: mailpack LIKE sopcklsti1 OCCURS 2 WITH HEADER LINE.
    DATA: mailhead LIKE solisti1 OCCURS 1 WITH HEADER LINE.
    DATA: mailbin LIKE solisti1 OCCURS 10 WITH HEADER LINE.
    DATA: mailtxt LIKE solisti1 OCCURS 10 WITH HEADER LINE.
    DATA: mailrec LIKE somlrec90 OCCURS 0 WITH HEADER LINE.
    DATA: solisti1 LIKE solisti1 OCCURS 0 WITH HEADER LINE.
    PERFORM send_form_via_email.
    FORM SEND_FORM_VIA_EMAIL *
    FORM send_form_via_email.
      CLEAR: maildata, mailtxt, mailbin, mailpack, mailhead, mailrec.
      REFRESH: mailtxt, mailbin, mailpack, mailhead, mailrec.
    Creation of the document to be sent File Name
      maildata-obj_name = 'TEST'.
    Mail Subject
      maildata-obj_descr = 'test_1234567879'.
    Mail Contents
      mailtxt-line = 'Here is your file'.
      APPEND mailtxt.
    Prepare Packing List
    PERFORM prepare_packing_list.
      CLEAR: mailpack, mailbin, mailhead.
      REFRESH: mailpack, mailbin, mailhead.
      DESCRIBE TABLE mailtxt LINES tab_lines.
      READ TABLE mailtxt INDEX tab_lines.
      maildata-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( mailtxt ).
    Creation of the entry for the compressed document
      CLEAR mailpack-transf_bin.
      mailpack-head_start = 1.
      mailpack-head_num = 0.
      mailpack-body_start = 1.
      mailpack-body_num = tab_lines.
      mailpack-doc_type = 'PDF'.
      APPEND mailpack.
    PERFORM get_otf_code.
      DATA: BEGIN OF otf OCCURS 0.
              INCLUDE STRUCTURE itcoo .
      DATA: END OF otf.
      DATA: itcpo LIKE itcpo.
      DATA: itcpp LIKE itcpp.
      CLEAR itcpo.
      itcpo-tdgetotf = 'X'.
    Start writing OTF code
      CALL FUNCTION 'OPEN_FORM'
           EXPORTING
                form     = 'ZTEST_FORM'
                language = sy-langu
                options  = itcpo
                dialog   = ' '
           EXCEPTIONS
                OTHERS   = 1.
      CALL FUNCTION 'START_FORM'
           EXCEPTIONS
                error_message = 01
                OTHERS        = 02.
      CALL FUNCTION 'WRITE_FORM'
           EXPORTING
                window        = 'MAIN'
           EXCEPTIONS
                error_message = 01
                OTHERS        = 02.
    Close up Form and get OTF code
      CALL FUNCTION 'END_FORM'
           EXCEPTIONS
                error_message = 01
                OTHERS        = 02.
      MOVE-CORRESPONDING itcpo TO itcpp.
      CALL FUNCTION 'CLOSE_FORM'
           IMPORTING
                result  = itcpp
           TABLES
                otfdata = otf
           EXCEPTIONS
                OTHERS  = 1.
      DATA: i_tline TYPE TABLE OF tline WITH HEADER LINE,
            v_len_in LIKE sood-objlen.
      DATA doctab_archive LIKE docs OCCURS 10.
      CALL FUNCTION 'CONVERT_OTF_2_PDF'
    EXPORTING
      USE_OTF_MC_CMD               = 'X'
      ARCHIVE_INDEX                =
    IMPORTING
      BIN_FILESIZE                 =
        TABLES
          otf                          = otf
          doctab_archive               = doctab_archive
          lines                        = i_tline
       EXCEPTIONS
         err_conv_not_possible        = 1
         err_otf_mc_noendmarker       = 2
         OTHERS                       = 3
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CLEAR solisti1. REFRESH solisti1.
      LOOP AT i_tline.
        solisti1-line = i_tline.
        APPEND solisti1.
      ENDLOOP.
      LOOP AT solisti1.                                         "solisti1.
        MOVE-CORRESPONDING solisti1 TO mailbin.
        APPEND mailbin.
      ENDLOOP.
      DESCRIBE TABLE mailbin LINES tab_lines.
      mailhead = 'TEST.PDF'.
      APPEND mailhead.
    Creation of the entry for the compressed attachment
      mailpack-transf_bin = 'X'.
      mailpack-head_start = 1.
      mailpack-head_num = 1.
      mailpack-body_start = 1.
      mailpack-body_num = tab_lines.
      mailpack-doc_type = 'PDF'.
      mailpack-obj_name = 'TEST'.
      mailpack-obj_descr = 'Subject'.
      mailpack-doc_size = tab_lines * 255.
      APPEND mailpack.
    Set recipient - email address here!!!
      mailrec-receiver = 'FU.Q.HUANG'.  "'[email protected]'.
      mailrec-rec_type = 'B'.           "'U'.
      APPEND mailrec.
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data                    = maildata
      PUT_IN_OUTBOX                    = ' '
    IMPORTING
      SENT_TO_ALL                      =
      NEW_OBJECT_ID                    =
        TABLES
          packing_list                     = mailpack
      OBJECT_HEADER                    =
         contents_bin                      = mailbin
         contents_txt                     = mailtxt
      CONTENTS_HEX                     = mailbin
      OBJECT_PARA                      =
      OBJECT_PARB                      =
          receivers                        = mailrec
       EXCEPTIONS
         too_many_receivers               = 1
         document_not_sent                = 2
         document_type_not_exist          = 3
         operation_no_authorization       = 4
         parameter_error                  = 5
         x_error                          = 6
         enqueue_error                    = 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.
    ENDFORM.

  • Can not see attachments on the Email

    The overview screen shows that there is an attachment but when you select the message the attachment does not show up, this is happening when messages are forwarded. At times when there is a pdf attachment (not a forwarded message) what opens up is the media player. Some pdf attachments have no problems of opening.
    The N900 needs to become a serious phone, this needs to be fixed.
    This does not happen on my N97 !
    Any solutions ?

    This just happened to me. After a bit of messing about I decided to forward the message  back to my own e-mail address.
    Again the email attachment was shown in the overview screen but not in the main email, however, the attachment was now available from the sent items folder.
    Not a fix or solution, more of a bodge!!!
    Hope it helps

  • How can I open attachments from my email

    When I get attachments it won't let me open them. How can I fix this

    Which email? Using Firefox?

  • I can not open firefox. Recieve message: "Couldnt find mozilla runtime". Can you help me?

    I find file "mozilla runtime exe" under removed files in directory "removed files". What does it means?

    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    Please report back to see if this helped you!

  • It says I am connect to wireless internet, but can not open any pages or email.

    I've tried restarting, I've checked my wireless on/off switch on side of laptop. I've checked to be sure I'm not working "off line". I've tried re-entering my "key". Nothing seems to work!
    Joni [email protected]

    Ok, thanks!
    ... and how are you connected to the Internet? Wireless DSL/Cable modem/router? If so, what is the make/model of this modem/router?
    Let's also double-check your MacBook's AirPort settings ...
    System Preferences > Network > Show > Network Port Configurations
    o Verify that an AirPort option exists. If it does not, click "New" to create one. (Note: If you are unable to create an AirPort configuration, the AirPort card in your computer either doesn't exist or it is not recognized.)
    o Verify that AirPort is "On" (checked)
    o Verify that AirPort is at the top of the list. If it isn't, you can drag it to the top.
    Systems Preferences > Network > Show > AirPort
    AirPort tab
    o By default, join: Automatic
    TCP/IP tab
    o Configure IPv4: Using DHCP
    o Configure IPv6: Off
    Proxies tab
    o Configure Proxies: Manually
    o Select a proxy server to configure: <All proxies should be unchecked unless you specifically require a proxy for Internet access.>
    o Exclude simple hostnames (unchecked)
    o Bypass proxy settings for these Hosts & Domains: <leave blank>
    o Use Passive FTP Mode (PASV) (checked)
    Do these settings match yours?

  • Somehow in the past several months Firefox changed. Now when I access my hotmail account I can not open or delete any email. I can sign in and out. Have no problem using firefox on other pc's to access hotmail just on this PC..help plz

    Windows XP SP3
    2gb intel, 80gb Hdd, 2gb RAM
    At one time I had no problem accessing hotmail email.
    I dont know if the changed occurred after a firefox update or
    if maybe a grandkid changed something

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    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.com/kb/Safe+Mode
    Thunderbird

  • I can't open attachments since I accidently cleared my download and browsing history

    I can't open attachments in my email. Hotmail. Using Firefox browser. I just want to clear recent history for cache but cleared all but the two bottom ones, offline website, and site preferences. I was trying to fix a problem that I could not access my contact list of my hotmail account. I am using IE now and can get to my contacts and open attachments in that. But want to fix my Firefox

    I understand that you cannot open attachments.
    *Are pop ups blocked for this site?
    *[[What to do if you can't download or save files]]
    Also troubleshoot extensions: [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]

  • Can not open email attachments in yahoo mail

    I can not open any attachments in my yahoo email account using firefox. However I can open them in IE. Please help!

    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    (You also can clear Firefox's cache completely using:
    orange Firefox button ''or'' Tools menu > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now")
    (2) Remove the site's cookies (save any pending work first) using either of these. While viewing a page on the site:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    Then try reloading the page. Does that help?

  • IOS 8.0.2 iPhone 6 can not open photo or pdf attachments in email

    After the photo (jpg) downloads, all I get is a grey screen with the photo name.  Same as when I tried to open a PDF attachment.
    Is there a security setting or something I missed on the phone?
    The files are fine, opened everything on my iMac and MBP.  Just can not open on the phone. Attachments are being sent through email.

    Hey Mrstudio,
    Thanks for the question. Are you experiencing this issue with an Exchange account on your device? If so, the attachment may now be downloading fully. Check out the following resource:
    iOS 7.1 or later: If you can't open or forward attachments in Exchange account messages
    http://support.apple.com/kb/TS5429
    Thanks,
    Matt M.

Maybe you are looking for