Email attachments in PDF

I am using Windows XP and have Adobe Reader 9.
The message attachment comes in to us with winmail.dat but the attachment was sent to us using PDF producer Acrobat Distiller 6.0 (windows)
PDF version 1.4 (Acrobat 5.x)
why does it do this?
we need to be able to open these attachments.
Any ideas?

Ask the sender to send it again, this time using Plain Text as the
format for his Outlook mail message.
Noel

Similar Messages

  • EMail Attachments using PDF file

    Hi guys
    I have developed an application using Oracle 8i and forms 6i. There is a report developed in 6i repors and saved as PDF format. this file I have to send as attachemnts to the employees.
    Is there any way to send PDF file as attachemnts using forms 6i.
    REgards
    Linga Murthy Mudigonda

    The easiest way (and OS independent, so you don't need Outlook or blat or something like that) is to send the email and attachment from the database. Package utl_smtp won't let you do that, but with Java mail you can. So, after you generated your report, you can mail it using Java mail.
    Everything is described very clearly in note 120994.1 on Metalink (How to Send E-mail With Attachments from PL/SQL Using Java Stored Procedures).

  • Convert Outlook 2010 emails + attachments to pdf

    Looking for some help.  We've upgraded to Office 2010 and are unable to convert emails and attachments from Outlook 2010 to pdf using Acrobat Pro 9, 10, or 11.  This function was working with Outlook 2007 and Acrobat Pro 9.  Any information on how to fix this would be helpful! 

    Thanks Anoop I was extremely needed to convert my Outlook emails to PDF including attachments and header portion. Before reading your post I also read an online discussion that indicates tips and tricks to complete conversion task without installing MS Outlook or any additional drivers & programs. I had read such type of discussion here http://www.pcvita.com/convert-outlook-emails-to-pdf-with-attachments.html by searching in google "PST to PDF". It resulted well and did required job precisely. Below is a glimps of GUI:

  • I can open all email attachments except .pdf.

    Until yesterday I could open all attachments. Now I can't open .pdfs.

    https://support.mozilla.org/en-US/kb/ask-tb#w_how-to-ask-your-question

  • Email attachments download as ashx for Microsoft Outlook, instead of jpg, pdf, doc, etc. Tried to fix in Preferences Applications but still doesn't work.

    Using MacBook Pro running 10.5.8. Downloaded Firefox 8 on 11/9/11 and now Microsoft Outlook Web App 2010 downloads all email attachments as "attachment.ashx" instead of jpg, pdf, etc. This was not a problem with previous Firefox releases which I've been using for the past couple of years. Can open files if I edit the extension to the proper variety (ashx to jpg for example), but no longer initially automatically opens. Instead I first get a "can't open this file" message.  Attempted to fix in Firefox > Preferences > Applications by indicating the proper "Actions" for various "Content Types" but this had no effect. Chrome and Safari browsers still work properly. How can I fix this?

    Hi,
    I'm sorry you are having this problem, here is another post about the same problem, where the cause of the problem is described:
    https://support.mozilla.com/en-US/questions/894442
    A bug has been filed to track resolution of the issue here, because a true fix isn't yet available:
    https://bugzilla.mozilla.org/show_bug.cgi?id=703015
    I apologize for the inconvenience.
    Regards,
    Michelle

  • What program should i use to open pdf files, documents for email attachments. Adobe is not working

    I can not open any email attachments-large or small. I had adobe and switched to internet explorer.  I do not have any other choices on my computer to pick from other than word pad and it opened the attachment but was not readable. 

    Please download and install the latest version of Acrobat Reader from the following weblink that will help you to open and read all the PDF files:
    http://get.adobe.com/reader/
    I am an HP employee.
    Regards,
    Vidya
    Make it easier for other people to find solutions, by marking my answer “Accept as Solution” if it solves your problem.
    ***Click on "Thumbs up" button to the bottom right side of my post to say thanks!***

  • Unable to send PDFs as email attachments

    I have become unable to send PDFs as email attachments when using Firefox.
    Depending on the PDF, I either get the message “There was an error opening this document. The file is damaged and could not be repaired.” or it opens as a blank document. This occus when opening the file with both Adobe Reader and Acrobat Pro. The problem seems to be isolated to PDFs. (I am able to send Word files. If a PDF is zipped before attaching, it can be opened without problem.) This occurs on both an institutional email account and personal (Yahoo) email account. This problem is isolated to Firefox (does not happen in Chrome).
    I have reset Firefox to default settings, as well as reinstalling.
    Thank you.

    Update Adobe® Acrobat® Plug-in for Web Browsers, Version 10.1.13 to version 11.
    Also please update all of your plugins and try again.
    Does this happen when you open the pdf in pdf.js, it is possible to change the default viewer by:
    * [[How to disable the built-in PDF viewer and use another viewer]]

  • Pdf files as email attachments come in unreadable Word

    pdf files as email attachments come up in unreadable Word.  What am I doing wrong?
    These files are saved as .pdf

    If they automatically open in Word, then you need to change the file association.
    Easiest by uninstalling/reinstalling Adobe Reader.

  • Sending PDF + Excel as Email attachments in Unicode System

    Hi,
    I have a problem in sending mails having 2 attachments. one with PDF and another Excel. I use SO_DOCUMENT_SEND_API1 by populating contents_bin table. PDF attachment is fine (PDF is created from spool), but excel attachment fails to open correctly. I refered note 1151258, but not successfull.
    When I tried using contents_hex as suggested in report SENDLIST, the PDF attachment is corrupted.
    The above method works fine in non-unicode system. But not in a unicode system. 
    In short I want to send two attachments (one PDF by reading spool and second excel by using an interanl table) in a mail. Any ideas & suggestions please?
    Thanks,
    Ravikanth

    HI,
    use below logic..
    *&      Form  BUILD_XLS_DATA_TABLE
          Build data table for .xls document
    FORM build_xls_data_table.
    *If you have Unicode check active in program attributes thnen you will
    *need to declare constants as follows
      CLASS cl_abap_char_utilities DEFINITION LOAD.
      CONSTANTS:
          con_tab  TYPE c VALUE cl_abap_char_utilities=>horizontal_tab,
          con_cret TYPE c VALUE cl_abap_char_utilities=>cr_lf.
      CONCATENATE   '' '' '' 'PASSPORT AND VISA DETAILS REPORT' ' '
                   INTO lt_attach SEPARATED BY SPACE.
      CONCATENATE con_cret lt_attach  INTO lt_attach.
      APPEND  lt_attach.
      CONCATENATE 'Per.Num' 'Sub.Type' 'First.Name' 'Dep.Name'
                  'Nation ' 'Pass. Num' 'Exp.Date' 'Visa.Num' 'Exp.Date'
                   INTO lt_attach SEPARATED BY  con_tab.
      CONCATENATE con_cret lt_attach  INTO lt_attach.
      APPEND  lt_attach.
      LOOP AT ot_dependent INTO wa_dependent.
        CONCATENATE wa_dependent-pernr
                   wa_dependent-subty
                    wa_dependent-subtype_text
                    wa_dependent-vorna
                    wa_dependent-favor
                    wa_dependent-fanat
                    wa_dependent-zzicnum
                    wa_dependent-zzexpid
                    wa_dependent-zzvcnum
                    wa_dependent-zzvexpid
                                      INTO lt_attach  SEPARATED BY con_tab.
        CONCATENATE con_cret lt_attach  INTO lt_attach.
        APPEND lt_attach.
      ENDLOOP.
    ENDFORM.                    " BUILD_XLS_DATA_TABLE
    FORM f_send_email_passport_details .
    Populate message body text
      PERFORM populate_email_message_body.
    Send file by email as .xls speadsheet
      PERFORM send_file_as_email_attachment
                                   TABLES lt_message
                                          lt_attach
                                    USING p_email
                                          'Passport and Visa .xls document attachment'
                                          'XLS'
                                          'filename'
                                 CHANGING gd_error
                                          gd_reciever.
      Instructs mail send program for SAPCONNECT to send email(rsconn01)
      PERFORM initiate_mail_execute_program.
    ENDFORM.                    " F_SEND_EMAIL_PASSPORT_DETAILS
    FORM f_send_email_passport_details .
    Populate message body text
      PERFORM populate_email_message_body.
    Send file by email as .xls speadsheet
      PERFORM send_file_as_email_attachment
                                   TABLES lt_message
                                          lt_attach
                                    USING p_email
                                          'Passport and Visa .xls document attachment'
                                          'XLS'
                                          'filename'
                                 CHANGING gd_error
                                          gd_reciever.
      Instructs mail send program for SAPCONNECT to send email(rsconn01)
      PERFORM initiate_mail_execute_program.
    ENDFORM.                    " F_SEND_EMAIL_PASSPORT_DETAILS
    *&      Form  SEND_FILE_AS_EMAIL_ATTACHMENT
          Send email
    FORM send_file_as_email_attachment TABLES pit_message
                                              pit_attach
                                        USING p_email
                                              p_mtitle
                                              p_format
                                              p_filename
                                              p_attdescription
                                              p_sender_address
                                              p_sender_addres_type
                                     CHANGING p_error
                                              p_reciever.
      DATA: ld_error    TYPE sy-subrc,
            ld_reciever TYPE sy-subrc,
            ld_mtitle LIKE sodocchgi1-obj_descr,
            ld_email LIKE  somlreci1-receiver,
            ld_format TYPE  so_obj_tp ,
            ld_attdescription TYPE  so_obj_nam ,
            ld_attfilename TYPE  so_obj_des ,
            ld_sender_address LIKE  soextreci1-receiver,
            ld_sender_address_type LIKE  soextreci1-adr_typ,
            ld_receiver LIKE  sy-subrc.
      ld_email   = p_email.
      ld_mtitle = p_mtitle.
      ld_format              = p_format.
      ld_attdescription      = p_attdescription.
      ld_attfilename         = p_filename.
      ld_sender_address      = p_sender_address.
      ld_sender_address_type = p_sender_addres_type.
    Fill the document data.
      w_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
      w_doc_data-obj_langu = sy-langu.
      w_doc_data-obj_name  = 'SAPRPT'.
      w_doc_data-obj_descr = ld_mtitle .
      w_doc_data-sensitivty = 'F'.
    Fill the document data and get size of attachment
      CLEAR w_doc_data.
      READ TABLE lt_attach INDEX w_cnt.
      w_doc_data-doc_size =
         ( w_cnt - 1 ) * 255 + STRLEN( lt_attach ).
      w_doc_data-obj_langu  = sy-langu.
      w_doc_data-obj_name   = 'SAPRPT'.
      w_doc_data-obj_descr  = ld_mtitle.
      w_doc_data-sensitivty = 'F'.
      CLEAR t_attachment.
      REFRESH t_attachment.
      t_attachment[] = pit_attach[].
    Describe the body of the message
      CLEAR t_packing_list.
      REFRESH t_packing_list.
      t_packing_list-transf_bin = space.
      t_packing_list-head_start = 1.
      t_packing_list-head_num = 0.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE lt_message LINES t_packing_list-body_num.
      t_packing_list-doc_type = 'RAW'.
      APPEND t_packing_list.
    Create attachment notification
      t_packing_list-transf_bin = 'X'.
      t_packing_list-head_start = 1.
      t_packing_list-head_num   = 1.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.
      t_packing_list-doc_type   =  ld_format.
      t_packing_list-obj_descr  =  ld_attdescription.
      t_packing_list-obj_name   =  ld_attfilename.
      t_packing_list-doc_size   =  t_packing_list-body_num * 255.
      APPEND t_packing_list.
    Add the recipients email address
      CLEAR t_receivers.
      REFRESH t_receivers.
      t_receivers-receiver = ld_email.
      t_receivers-rec_type = 'U'.
      t_receivers-com_type = 'INT'.
      t_receivers-notif_del = 'X'.
      t_receivers-notif_ndel = 'X'.
      APPEND t_receivers.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
        EXPORTING
          document_data              = w_doc_data
          put_in_outbox              = 'X'
          sender_address             = ld_sender_address
          sender_address_type        = ld_sender_address_type
          commit_work                = 'X'
        IMPORTING
          sent_to_all                = w_sent_all
        TABLES
          packing_list               = t_packing_list
          contents_bin               = t_attachment
          contents_txt               = lt_message
          receivers                  = t_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.
    Populate zerror return code
      ld_error = sy-subrc.
    Populate zreceiver return code
      LOOP AT t_receivers.
        ld_receiver = t_receivers-retrn_code.
      ENDLOOP.
    ENDFORM.                    "send_file_as_email_attachment
    *&      Form  INITIATE_MAIL_EXECUTE_PROGRAM
          Instructs mail send program for SAPCONNECT to send email.
    FORM initiate_mail_execute_program.
      WAIT UP TO 2 SECONDS.
      SUBMIT rsconn01 WITH mode = 'INT'
                    WITH output = 'X'
                    AND RETURN.
    ENDFORM.                    " INITIATE_MAIL_EXECUTE_PROGRAM
    Regards,
    Naresh Chava.

  • Why can I not open PDF email attachments?

    Normally on my iPhone I'm able to simply click on the PDF attachment at the bottom of an email and it opens for me to read but I just got an iPad and it doesn't seem to do that. When I click attachments in my email nothing happens.  But for instance when I try to open attachments I have saved in Dropbox they open perfectly fine.

    Well something has changed since IOS came out. I can't open email attachments anymore in all apps.
    Up until say 3 weeks ago I would tap on an email attachment (a PDF) and a menu of apps would appear. Normally I would choose Goodreader or iBooks to open the PDF. No problems. My iPad2 would switch to the app and open the PDF.
    Now that IOS 6 is out when you touch the email attachment icons appear. Goodreader and iBook show up. But when i touch either one of these icons nothing happens. It won't switch to the app and open the PDF anymore.
    Two other things. I do have other apps that appear such as PDFSplicer. If i choose it the iPad2 switches to that app and opens the PDF. It's only Goodreader and iBook that won't work anymore.
    second, I went to my local Apple store and talked to the guys at the genius bar. I demonstrated the problem to them. They said it looks like a bug and suggested I send a bug report to apple. Never heard back from them.
    Any ideas?

  • IPAD3/IPAD2 :PDF files/ attachments  sent in an email  displayed inline ( embedded within the main email) in the message text on both my Ipad2 and Ipad three, however the same email displayed the PDF File icons/ attachment on both my Iphone and a friend's

    IPAD3/IPAD2 :PDF files/ attachments  sent in an email  displayed inline ( embedded within the main email) in the message text on both my Ipad2 and Ipad three, however the same email displayed the PDF File icons/ attachment on both my Iphone and a friend’s PC. How do i get both my IPAD devices to display the PDF icons/attachments? Bearing in mind if i open the same email over the internet the PDF Icons/attachments display OK!
    Has anyone come across this? Your advice/help would be most appreciated

    This happens to me all the time.
    If is a one page PDF it seems as though it comes over already open and inline in the body of the email. Multiple page PDF files show as the PDF icon.
    I can't find any official documentation of this - other than based on my own experience with PDF attachments in my various email accounts.
    Message was edited by: Demo

  • How do i default my PC to open email photo or pdf attachments in Elements?  It currently opens in my olf Adone photoshop starter edition 3.2

    how do i default my PC to open email photo or pdf attachments in Elements?  It currently opens in my olf Adone photoshop starter edition 3.2

    You can install PSE on the XP machine.Convert the catalog on of starter edition to PSE.Take the backup of the catalog on XP machine and then restore it on the windows 7 machine. This way you will have all the data of the catalog on your XP machine.

  • Why don't pdf email attachments not open in pdf reader?

    I have a series 1 iPad running the latest ios available for that model. I have an email with some PDF attachments that I want to open and store in PDF reader however the only options presented are to read the attachments using iBooks or Kindle. Why is this?

    Thank you. I tried installing adobe reader and it worked but it made me wonder why. I have the PDF reader created by Kdan and so I went on their website and found the following.
    Unfortunately Apple's device has a limitation on the app number displayed on the open-in list and we are not allowed to change its order.
    We suggest you delete some of the existing apps equipped the open-in feature to get PDF Reader available on the open-in list.
    When I installed adobe as suggested, that appeared in 2nd place. I de-installed convert to text and I-can-print, which I hardley ever use, and sure enough Kdan PDF reader now appears in the list.
    Thanks for the lead

  • .pdf email attachments open in photoshop.  How do I get them to open in Reader?

    Hey,
    .pdf email attachments open in photoshop.  How do I get them to open in Reader?
    thx

    You need to change your file association to open .pdf files with Adobe Reader.
    See http://windows.microsoft.com/en-us/windows/change-file-open-program#1TC=windows-7

  • PDFs not opening online or in email attachments

    Recently my MacBook Air (OS 10.7.5), my iPad, and my iPhone have not been consistently opening PDF files, either from the Internet  (informational downloads from a website, for instance) or email attachments, some of which have previously opened successful.  Oddly enough, my MacBook Pro (also 10.7.5) will open some of the files that the other devices don't, but not all of them.  We have tried updating the newest Adobe Reader, renaming the files, printing as a PDF…nothing has worked.  Any tips?

    Right click on the PDF in your browser and select Save Link As to download the PDF file locally. Then,
    1.       In your web browser, choose File > Open (or Open File).
    2.       (Windows only) From the Files Of Type menu, choose All Files.
    3.       Click Browse.
    4.       Select the PDF you have saved previously, and then click Open to open the PDF. If Acrobat or Adobe Reader displays the file but doesn't display it on the web, the web server has a problem serving the PDF file. Contact the webmaster of the site from which you downloaded the PDF file.

Maybe you are looking for

  • Mac Pro does not wakeup 1 of 3 connected monitors: Philips times out

    Hi, (Setup) I use a Mac Pro from 2014 (End 2013, AMD Firepro, D700 Graphics, 6core, 1TB SSD, 32MB, actual OSX Yosemite 10.10.2). Connected are three monitors: Philips BDM 4065 UC (40 great inches) via mini DP to DP cable 2x Dell 2410 (vertical/pivot

  • Play exit animations on multiple external SWF's?

    Hi, Here is what I would like to do: I have some buttons, then 2 movie clips named container and container2. When I click on a button, an external SWF is loaded into container. I have it working so that when another button is clicked, it plays the ex

  • Fast reply please ! CAN'T CREATE SWF !!

    I press ctrl enter but nothing happens. Why happens that ? I can't even publish it.

  • Run time error in ALV editable

    Hi Gurus I am getting a run time error when I edit a field in the ALV report and press enter. The run time error is : GETWA_NOT_ASSIGNED. It says I tried to access an unassigned field symbol. I have not used any field symbols in my field catalog or a

  • Error in startup.bat

    When I run my startup.bat file I receive the following errors LRM-00116 syntax error 'undo_tablespace' following '=' and ORA-01078. rem startup bat @echo on echo startup: date/t echo sys/world9 as sysdba echo startup echo startup pfile=e:\oracle\admi