Pdf attachments open in body of e-mail

Using my mac mail program, when I click (on the paper clip) to attach a PDF - instead of an icon, it opens up in the body of the e-mail. Please advise. Thanks, Iza

It might make a difference whether the document "kind" is PDF Document or Adobe PDF Document. Because Mac OS X distinguishes files by more than just the extension, two files that end in .pdf may look different to applications.
Download those attachments, do a Get Info for both in Finder, and see if they are different based on Kind. See if that is related to them opening in the email body and not opening.

Similar Messages

  • PDF attachments opening in mail messages

    Hello when I send a pdf file as an attachment in a mail message, the file opens. I'd like to send the file as an icon/attachment and not display the contents of the file. How do I do this. Thank you very much.

    I thought I did:
    But just to be sure, I propagated permissions to all enclosed, but that did not seem to change anything.
    Maybe this is one of those "just because".

  • Pdf as in the body of e-mail.

    Hello experts,
    we are sending a pdf as an attachment of an e-mail.what im trying to do is to send pdf in the body of e-mail.
    i have search and couldnt find any help in the documents or discussions.
    here is my code:
    FORM SEND_MAIL
    DATA: lv_formname TYPE  tdsfname,
             lv_fm_name  TYPE  rs38l_fnam,
             ls_control_parameters TYPE ssfctrlop,
             ls_output_options     TYPE ssfcompop,
             lv_user_settings      TYPE tdbool VALUE 'X',
             ls_job_output_info    TYPE ssfcrescl,
             ls_job_output_options TYPE ssfcresop.
       DATA: lt_otfdata TYPE TABLE OF itcoo,
             lt_pdfdata TYPE TABLE OF tline WITH HEADER LINE.
       DATA: ls_data TYPE zfi_s_satici_mutabakat.
       DATA: ls_document_data       LIKE  sodocchgi1,
             lv_put_in_outbox       LIKE  sonv-flag,
             lv_sender_address      LIKE  soextreci1-receiver,
             lv_sender_address_type LIKE  soextreci1-adr_typ,
             lv_commit_work         LIKE  sonv-flag VALUE space,
             lt_packing_list  TYPE TABLE OF sopcklsti1 WITH HEADER LINE,
             lt_object_header TYPE TABLE OF solisti1   WITH HEADER LINE,
             lt_contents_bin  TYPE TABLE OF solisti1   WITH HEADER LINE,
             lt_contents_txt  TYPE TABLE OF solisti1   WITH HEADER LINE,
             lt_contents_hex  TYPE TABLE OF solix      WITH HEADER LINE,
             lt_object_para   TYPE TABLE OF soparai1   WITH HEADER LINE,
             lt_object_parb   TYPE TABLE OF soparbi1   WITH HEADER LINE,
             lt_receivers     TYPE TABLE OF somlreci1  WITH HEADER LINE.
       DATA: lv_len TYPE i,
             lv_pos TYPE i,
             lv_tab_lines TYPE i.
       DATA: lt_pdf_tab LIKE tline OCCURS 0 WITH HEADER LINE.
       CLEAR: lv_formname, lv_fm_name.
       lv_formname = 'ZLIMIT_REQUEST_FORM2'.
       PERFORM smartform_fm_name USING lv_formname
                                 CHANGING lv_fm_name .
    *get PDF Data
       ls_control_parameters-getotf    = 'X'.
       ls_control_parameters-no_dialog = 'X'.
       ls_output_options-tdnoprev      = 'X'.
       LOOP AT itab WHERE sel eq 'X'.
         concatenate sy-datum+6(2)'.'sy-datum+4(2)
             '.'sy-datum(4) into datum.
         CALL FUNCTION lv_fm_name
           EXPORTING
             control_parameters = ls_control_parameters
             output_options     = ls_output_options
             user_settings      = 'X'
             datum              = datum
             EPAYMENT_T1        = EPAYMENT_T1
             EPAYMENT_T2        = EPAYMENT_T2
             EPAYMENT_D1        = EPAYMENT_D1
             EPAYMENT_D2        = EPAYMENT_D2
             NAME1              = name1
    "        itab               = itab[]
           IMPORTING
             job_output_info    = ls_job_output_info
           TABLES
             ITAB               = itab
         FREE: lt_otfdata, lt_pdfdata.
         lt_otfdata[] = ls_job_output_info-otfdata[].
         PERFORM convert_otf TABLES lt_otfdata lt_pdfdata.
         FREE: lt_receivers, lt_packing_list,
               lt_contents_bin, lt_contents_txt.
    * Assigning the Description of the object sent in the mail
         CLEAR ls_document_data.
         ls_document_data-obj_name = 'Limit Talep Formu'.
         ls_document_data-obj_descr = 'Limit Talep Formu'.
         ls_document_data-expiry_dat  = sy-datum + 10.
         ls_document_data-sensitivty = 'F'.
         LOOP AT gt_mail.
           CLEAR : lt_receivers.
           lt_receivers-receiver = gt_mail-ZZSAHAMUDUREMAIL. " """reciever list
           lt_receivers-rec_type = 'U'.
           lt_receivers-com_type = 'INT'.
           APPEND lt_receivers.
           lt_receivers-COPY = mail_bm.
           lt_receivers-rec_type = 'U'.
           lt_receivers-com_type = 'INT'.
           APPEND lt_receivers.
         ENDLOOP.
         CLEAR: lt_contents_txt.
         lt_contents_txt-line = 'Sayın yetkili,'.
         APPEND lt_contents_txt.CLEAR lt_contents_txt.
         APPEND lt_contents_txt.
         CONCATENATE 'Ekte tarafınıza ait limit formu'
         ' bulunmaktadır.' INTO lt_contents_txt-line
         SEPARATED BY space.
         APPEND lt_contents_txt.CLEAR lt_contents_txt.
         APPEND lt_contents_txt.
         lt_contents_txt-line = 'Saygılarımızla,'.
         APPEND lt_contents_txt.CLEAR lt_contents_txt.
         CLEAR lt_packing_list.
         lt_packing_list-transf_bin  = space.
         lt_packing_list-head_start  = 1.
         lt_packing_list-head_num    = 0.
         lt_packing_list-body_start  = 1.
         lt_packing_list-body_num    = LINES( lt_contents_txt ).
         lt_packing_list-doc_type    = 'RAW'.
         APPEND lt_packing_list. CLEAR lt_packing_list.
         ls_document_data-doc_size = LINES( lt_contents_txt ) * 255.
         CALL FUNCTION 'SX_TABLE_LINE_WIDTH_CHANGE'
           EXPORTING
             line_width_src              = 134
             line_width_dst              = 255
           TABLES
             content_in                  = lt_pdfdata
             content_out                 = lt_contents_bin
           EXCEPTIONS
             err_line_width_src_too_long = 1
             err_line_width_dst_too_long = 2
             err_conv_failed             = 3
             OTHERS                      = 4.
    *Filling the details in SAPoffice: Description of Imported Object
    *Components table
         DESCRIBE TABLE lt_contents_bin LINES lv_tab_lines.
         CLEAR lt_contents_bin.
         READ TABLE lt_contents_bin INDEX lv_tab_lines.
         IF sy-subrc = 0.
           CLEAR: lt_packing_list.
           lt_packing_list-transf_bin = 'X'.
           lt_packing_list-head_start = 1.
           lt_packing_list-head_num = 1.
           lt_packing_list-body_start = 1.
           lt_packing_list-body_num = lv_tab_lines.
           lt_packing_list-obj_langu = sy-langu.
           lt_packing_list-doc_type = 'PDF'.
           lt_packing_list-obj_name = 'ATTACHMENT'.
           lt_packing_list-obj_descr = 'RISK TALEP FORMU.PDF'.
           lt_packing_list-doc_size = lv_tab_lines * 255.
           APPEND lt_packing_list.CLEAR lt_packing_list.
         ENDIF.
         lv_put_in_outbox = lv_commit_work = 'X'.
         CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
           EXPORTING
             document_data              = ls_document_data
             put_in_outbox              = lv_put_in_outbox
             sender_address             = lv_sender_address
             sender_address_type        = lv_sender_address_type
             commit_work                = lv_commit_work
           TABLES
             packing_list               = lt_packing_list
             object_header              = lt_object_header
             contents_bin               = lt_contents_bin
             contents_txt               = lt_contents_txt
             contents_hex               = lt_contents_hex
             object_para                = lt_object_para
             object_parb                = lt_object_parb
             receivers                  = lt_receivers
           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 eq 0.
    *      gt_data-gonderx = 'X'.
    *      modify gt_data.
    *      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    *              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
         ENDIF.
       ENDLOOP.
    ENDFORM.                    " SEND_MAIL

    Hi Matthew Billingham,
    i struggled quite a while if i should write a reply or not.
    The fact that one of my posts got rejected by suggesting FM SO_DOCUMENT_SEND_API1 finally made me do so. (maybe the rejection was ok for the context i wrote my post for but reading through the forum i feel like some people going to panic if they read the FM-name).
    I totally agree with u using CL_BC-Classes instead of old fashioned-FMs for new development.
    But that should not lead us in handling the name SO_DOCUMENT_SEND_API1 like they did with the name Lord Voldemort in Harry Potter.
    Wanting to display a PDF in email body instead of adding it as attchment, aint nescessary worth a complete redesign of the existing programm - as Cem Unal already posted his code and told us he just want to change it.
    As long as there are programms out that use this FM, there will be questions on how to handle this FM no matter if its obsolete or not. And where should they ask, when they wont be able to ask in the scn-forum?
    Reading the FMs documentation, there is nothing mentioning this FM is obsolete.
    So the strategie of suggesting to use newer technics because of personal preference should (in my opinion) not lead into deleting posts regarding the old technic on the other hand.
    regards
    Stefan Seeburger

  • Pdf attachments opening automatically

    When I click on a message with a pdf attachment at icloud.com it opens the attachment automatically. How can I stop this behavior?

    ok, so i changed firefox to ask me before opening it. but i think it's weird that i don't get an icon for pdf attachments. it just tries to open them right when i click on the message.

  • I have OSX Maverick on an iMac using Outlook e-mail.  PDF attachments are included in the e-mail  as the whole document rather than just the PDF icon.  How can i have just the PDF icon as an attachment?

    In Outlook my PDF attachments appear as whole documents and not just the PDF icon.  How can I have attachments included as PDF icons and not the documents?

    For your own viewing, you can of course control-click on the attachment and select "View as Icon".
    For others' viewing, it depends upon their email reader.  To ensure that attachments are not displayed expicitly you can put them all in a zip file (via control click and "Compress") then attaching them, or you can use third party stuff like Attachment Tamer.
    charlie

  • Why do PDF attachments open in Mail

    When I add a PDF as an attachment in Mail  it opens the first page and the other pages do not show.
    This only happens after installing Maverick OS10.9. I had previously used Snow Leopard 10.6.8 and this was never a problem.
    Do I have to reset something in Mail ?

    If you tap and hold the the PDF that renders in your email - you will get the pop up.  Just tap the middle of the PDF and hold your finger there until the pop-up comes up.

  • Keeping pdf files from opening in body of e-mail

    Anyone with a suggestion? I know it can be done, I just forget how.

    Isn't there a way of zipping the file with the OS or do I need a standalone program to do it?
    Command-click on the file you want to Zip and select "Create Archive of <filename>.
    Mulder

  • Adobe Presenter issue with PDF attachments opening

    I attached all my supplemental documents as PDF attachements so that they would be part of the zipped file when published. Once published, I tried clicking on an attachment, and I get a presenter file attachment window, indicating I need to save to my computer and click to download.  When I click the hyperlink, I get a swirling circle for about 3 minutes and nothing ever is downloaded to my computer.  What's wrong?

    Save that pdf file on desktop and try to open it using adobe reader.
    Downlaod the latest version to Reader XI and then try to open those pdf files.
    http://get.adobe.com/reader/?promoid=BUIGO

  • I recently purchased an Iphone 6plus and I am receiving pdf attachments that are shown as winmail.dat attachments on the phone. When I check e-mail via  my macbook pro the attachment is a pdf and I can open it. Why is this happening?

    I recently purchased an Iphone 6plus and I am receiving pdf attachments that are shown as winmail.dat attachments on the iphone. When I check the same e-mail on my macbook pro the attachment is a pdf and I can open it. Why is this happening?

    I had this problem too after i upgdatd to OS X Mavericks... only the songs on my iphone 5s that i purchased from itunes would play.
    i read something about it being a syncing issue. when you plug your phone into your computer with the usb cable, the person said to switch from automatic syncing of itunes to the "manual" option. mine was already set to manual so i wasn't sure anything would work. BUT, when i plugged my phone into my computer, it started to sync all of my music on my phone again (top of itunes bar where song playing/time is listed said "now syncing 123/534 songs to x's iphone"). once that was completed, i checked the music app on my iphone and everything was back to normal!
    so, i would suggest setting your music syncing settings to manual if you haven't tried that yet!
    hope this helps!

  • Pdf attachments to windows mail won't open correctly

    pdf attachments to emails won't open. I'm using Vista Ultimate 64. The attachments want to open in system 32, and error message says to "set associations." Set asociations is already set to reader 9.1 (which I just updated to 9.2 in an attempt to get it to work). It shouldn't make a difference whether the document was created on a 32 bit or 64 bit computer. I tried saving the attachment but something converted it to a .doc format. When I tried to open it I got pages full of code (in WordPad) not a formatted page.  Current documents saved in pdf open as they should as long as I open them from the document file. I don't know whether it is windows, windows mail or some other program that is responsible for this. Documents downloaded from websites work fine. Has anyone else encountered the same problem? How do you fix it?

    see if these links help
    http://support.apple.com/kb/TS2537
    http://support.apple.com/kb/TS2486

  • PDF attachments won't open in ios4 mail

    PDF attachments received in ios4 mail will not open. First page only displayed. How to fix?

    i finally got it to work. i went through all my apps and tried to think of anything that could interfere, including iBooks, and removed them using iTunes. I then hard reset my phone and checked to see if i could at least view them as i used to (iBooks) and i was. i then put iBooks back on my phone, checked a PDF in mail and was able to quicklook it or open in iBooks. i was able to then add the other apps back with out losing the functionality.
    apps i removed to get it working:
    Stanza
    AirSharing
    EasyTask
    Bump
    Photoshop Mobile
    hope this helps

  • UNABLE TO OPEN PDF ATTACHMENTS IN E-MAIL

    Over the past week,I have been unable to open PDF attachments in my AOL webmail.  I encounter no problems with my Outlook Express e-mail.  Why is this suddenly happening and how can I correct the problem?

    To make sure that Adobe Reader is default,
    goto Edit->Preferences->Select default PDF Handler. Check the value in the dropdown list "Select Adobe product". If the first value which appears is 'Adobe ReaderX', then Reader X is the default PDF Handler.
    Also please let me know the OS you are using.
    Is the problem also faced in AOL webmail with any other Adobe Product(like Acrobat X, Reader 9 etc.) if you are using/used any of them?
    Thanks,
    Shakti

  • Opening Large PDF attachments in e-mail?

    m trying to open large PDF attachments from e-mail (10-30mb) and either ipad says it can't open them "too large to read" or acts as though it will open but then doesn't open.  Any tips on how to make this work?

    I can open a 100mb pdf with iBooks.
    Try a reset; Hold the Powerbutton and the Homebutton pressed at the same time untill the Apple logo turns up on your screen.

  • Mail (in Mountain Lion) automatically opens my PDF attachments rather that adding them as a file. How do i stop this?

    Mail (in Mountain Lion) automatically opens my PDF attachments rather than attaching them as a "file". How can I prevent this?

    Download and run the free application TinkerTool (not "TinkerTool System"), select the Applications tab, and check the box labeled Don't display contents of attachments inline. Then relaunch Mail.

  • Can't open pdf attachments from Mail

    When I'm in Mail and try to open or save to my computer and then open a pdf in Preview, I get an error message  -
    "The file “Proposal to Seattle City Light - Wolverine Study 6Mar2012.pdf” could not be opened.  It may be damaged or use a file format that Preview doesn’t recognize."
    This happens with all pdfs in Mail.  However, if I go to email account on the Internet and download the pdf it opens no problem. This is a new problem, though I can't say if it started happening as soon as I upgraded to Lion or if it happened sometime after (definitely not before).
    Thanks!

    I think maybe I wasn't completely clear in my reply to your original message.
    I logged into my gmail account online and sent myself a pdf. I then retrieved that message with Mail and the pdf opened with no issues. It doesn't seem like that would be an issue with my mail service provider, because my pdf came through no problem, but those sent from others (all of whom I think are using Windows machines and hence Acrobat) will not open.
    I'm going to see if I can get someone using a Mac and someone I know for sure is using a PC to send my pdfs and see what happens.

Maybe you are looking for

  • How can i Copy paste from e-mail to Notebook or textbook

    How can i Copy pasta from some Content of e-mail to the notepad or textbook or word?

  • Apache plug-in problem in weblogic6.1sp2

    hi, After installing APACHE http server plug-in,not able to execute jsp pages. When i am trying to execute jsp pages,i am getting error 403:not found. Any help. Thanks, -Veera.

  • Keychain Wont Reset

    Hi everyone, I had an upgrade from Mavricks and upon completetion, the keychain began gaving me problems. The password was incorrect regardless of what I put in (even though I didnt have problems before the update) Ive tried to "reset" the keychain b

  • How long is the shuffle warranty?

    I don't know if mine has ever worked properly, always have that little orange light flashing but have been able to update etc, up till now. Now my imac doesn't recognize it anymore so I can't update. Bought it April 2005. Too late?

  • Won't Boot from recovery disc

    First let me say thank you in advance for any light you might be able to shed on my problem.  Here's the problem -  I have a Satellite x205-Sli.  I got an email for a BIOS update so followed the link and proceeded to install.  After trying twice, I k