Problem sending pdf file on Windows mail

I get the error message "There is a problem sending messages from [email protected] right now.  Contact your provider for more information" (both on aol.com and gmail.com) each time I send an e-mail with a pdf attachment.  I have the Adobe Reader XI and using Windows 8.1. 

I get the error message "There is a problem sending messages from [email protected] right now.  Contact your provider for more information" (both on aol.com and gmail.com) each time I send an e-mail with a pdf attachment.  I have the Adobe Reader XI and using Windows 8.1. 

Similar Messages

  • Smartform sending pdf file as a mail

    i have done a mailing a pdf as mail i am able to down load a file in to the systam which is perfect but i am not able to send the mail can any one tell me whats the problem in this and guide me if there is any problem.
    CALL FUNCTION 'GUI_FILE_SAVE_DIALOG'
    EXPORTING
       WINDOW_TITLE            = 'Save as'
       DEFAULT_EXTENSION       = 'PDF'
       DEFAULT_FILE_NAME       = W_FNAME
      WITH_ENCODING           =
      FILE_FILTER             =
      INITIAL_DIRECTORY       =
      DEFAULT_ENCODING        =
    IMPORTING
       FILENAME                = W_FNAME
      PATH                    =
      FULLPATH                =
       USER_ACTION             = v_action
      FILE_ENCODING           =
    if v_action = '9'.
      exit.
    endif.
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    BIN_FILESIZE = W_BIN_SIZE
    FILENAME = W_FNAME
    FILETYPE = 'BIN' "'ASC'
    IMPORTING
    FILELENGTH = V_FILESIZE
    TABLES
    DATA_TAB = T_PDF_TAB
    EXCEPTIONS
    FILE_WRITE_ERROR = 1
    NO_BATCH = 2
    GUI_REFUSE_FILETRANSFER = 3
    INVALID_TYPE = 4
    NO_AUTHORITY = 5
    UNKNOWN_ERROR = 6
    HEADER_NOT_ALLOWED = 7
    SEPARATOR_NOT_ALLOWED = 8
    FILESIZE_NOT_ALLOWED = 9
    HEADER_TOO_LONG = 10
    DP_ERROR_CREATE = 11
    DP_ERROR_SEND = 12
    DP_ERROR_WRITE = 13
    UNKNOWN_DP_ERROR = 14
    ACCESS_DENIED = 15
    DP_OUT_OF_MEMORY = 16
    DISK_FULL = 17
    DP_TIMEOUT = 18
    FILE_NOT_FOUND = 19
    DATAPROVIDER_EXCEPTION = 20
    CONTROL_FLUSH_ERROR = 21
    OTHERS = 22 .
    IF SY-SUBRC <> 0.
    MESSAGE 'File not downloaded succesfully' TYPE 'E'.
    ELSE.
    CONCATENATE 'File : ' W_FNAME 'downloaded succesfully ' INTO MSG1.
    MESSAGE MSG1 TYPE 'I'.
    ENDIF.
    data : GD_DOC_DATA type SODOCCHGI1.
    data : LT_MAILPACK type standard table of SOPCKLSTI1.
    data : LA_MAILPACK type SOPCKLSTI1.
    data : LT_OBJTXT   type STANDARD TABLE OF SOMLRECI1 WITH HEADER LINE.
    DATA:LF_LINES TYPE I.
    DATA LV_OUTPUT TYPE SDOKCNTBINS WITH HEADER LINE.
    *DATA LV_OUTPUT TYPE standard table of SOLISTI1 .
    data pdf_file type XSTRING.
    DATA: IT_RECEIVERS TYPE STANDARD TABLE OF SOMLRECI1 WITH HEADER
    LINE.
    data iv_mailid type AD_SMTPADR.
    move W_FNAME to pdf_file.
    Data : w_buffer TYPE string.
    *data : i_record LIKE solisti1 OCCURS 0
    *WITH HEADER LINE.
    data : i_record LIKE solisti1 OCCURS 0
    WITH HEADER LINE.
    data : s_record LIKE solisti1 OCCURS 0
    WITH HEADER LINE.
         CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
           EXPORTING
             BUFFER     = pdf_file "PDF file from function module
           TABLES
             BINARY_TAB = LV_OUTPUT.
         DESCRIBE TABLE LV_OUTPUT LINES LF_LINES.
    loop at T_PDF_TAB.
    *TRANSLATE T_PDF_TAB USING '~'.
    CONCATENATE w_buffer T_PDF_TAB INTO w_buffer.
      endloop.
    *TRANSLATE w_buffer USING '~ '.
    DO.
    i_record = w_buffer.
    APPEND i_record.
    SHIFT w_buffer LEFT BY 255 PLACES.
    IF w_buffer IS INITIAL.
    EXIT.
    ENDIF.
    ENDDO.
    s_record[] = i_record[].
    *DESCRIBE TABLE T_PDF_TAB LINES LF_LINES.
    select single SMTP_ADDR from ADR6 into iv_mailid where ADDRNUMBER =
    IV_ADDNR_VENDOR.
         DATA:LT_OBJTXT LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
          MOVE 'Email sent to you from SAP' TO LT_OBJTXT.
          APPEND LT_OBJTXT.
          GD_DOC_DATA-OBJ_DESCR = 'PDF'.
          GD_DOC_DATA-OBJ_NAME  = 'PDFMail'.
          GD_DOC_DATA-OBJ_DESCR = 'PDF'.
          GD_DOC_DATA-SENSITIVTY = 'O'.
       GD_DOC_DATA-EXPIRY_DAT = SY-DATUM + 15.
          GD_DOC_DATA-DOC_SIZE = STRLEN( LT_OBJTXT ).
          CLEAR  LA_MAILPACK.
          LA_MAILPACK-HEAD_START = 1.
          LA_MAILPACK-HEAD_NUM = 0.
          LA_MAILPACK-BODY_START = 1.
          LA_MAILPACK-BODY_NUM = 1.
       LA_MAILPACK-DOC_TYPE = 'RAW'.
          LA_MAILPACK-DOC_SIZE = STRLEN( LT_OBJTXT ).
          APPEND  LA_MAILPACK TO  LT_MAILPACK.
          CLEAR LA_MAILPACK.
          LA_MAILPACK-TRANSF_BIN = ''.
          LA_MAILPACK-HEAD_START = 1.
          LA_MAILPACK-HEAD_NUM = 1.
          LA_MAILPACK-BODY_START = 1.
          LA_MAILPACK-DOC_TYPE = 'PDF'.
          LA_MAILPACK-BODY_NUM = LF_LINES.
          LA_MAILPACK-DOC_SIZE = LF_LINES * 255.
          LA_MAILPACK-OBJ_DESCR = 'Open'.
          LA_MAILPACK-OBJ_NAME = 'MAIL'.
          APPEND LA_MAILPACK TO LT_MAILPACK.
          IT_RECEIVERS-RECEIVER = iv_mailid.
          IT_RECEIVERS-REC_TYPE = 'U'.
          APPEND IT_RECEIVERS.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
        DOCUMENT_DATA                    = GD_DOC_DATA
       PUT_IN_OUTBOX                    = 'X'
       COMMIT_WORK                      = 'X'
    IMPORTING
      SENT_TO_ALL                      =
      NEW_OBJECT_ID                    =
      TABLES
        PACKING_LIST                     = LT_MAILPACK
      OBJECT_HEADER                    =
       CONTENTS_BIN                     = s_record
       CONTENTS_TXT                     = LT_OBJTXT
      CONTENTS_HEX                     = LV_OUTPUT
      CONTENTS_HEX                     = s_record
      OBJECT_PARA                      =
      OBJECT_PARB                      =
        RECEIVERS                        = IT_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 <> 0.
    MESSAGE 'Mail was not sent' type 'E'.
    else.
      MESSAGE 'Mail was sent Succesfully' type 'S'.
    ENDIF.
    thanks and regards ,
    venkat.

    refer below program
    c_par-preview = space.
        c_par-getotf = 'X'.
        out_opt-tddest = 'EPSON-COMMON'.
        CALL FUNCTION fm_name
          EXPORTING
            control_parameters = c_par
            output_options     = out_opt
            user_settings      = space
            vbeln              = it_vbeln-vbeln
            pdf                = r2
            rbiclear           = c3
          IMPORTING
            job_output_info    = opt
            einv               = einv.
        i_otf = opt-otfdata.
        CALL FUNCTION 'CONVERT_OTF'
          EXPORTING
            format        = 'PDF'
            max_linewidth = 132
          IMPORTING
            bin_filesize  = v_len_in
          TABLES
            otf           = i_otf
            lines         = i_tline.
       IF lv_check EQ 1.
         CALL METHOD cl_gui_frontend_services=>file_save_dialog
           CHANGING
             filename = file_name
             path     = file_path
             fullpath = full_path.
       ENDIF.
        CLEAR full_path.
        move wa_exnum to lv_exnum.
        shift lv_exnum left deleting leading '0'.
        move 'C:\SAPWORKDIR\' to file_path.
        CONCATENATE file_path 'Invoice_E' lv_exnum '.PDF' INTO full_path.
        CALL FUNCTION 'GUI_DOWNLOAD'
          EXPORTING
            bin_filesize = v_len_in
            filename     = full_path
            filetype     = 'BIN'
          IMPORTING
            filelength   = file_size
          TABLES
            data_tab     = i_tline.
    For mailing
        IF ch2 EQ 'X'.
          DATA sub TYPE string.
          CALL FUNCTION 'QCE1_CONVERT'
            TABLES
              t_source_tab         = i_tline
              t_target_tab         = so_ali[]
            EXCEPTIONS
              convert_not_possible = 1
              OTHERS               = 2.
    Mail Contents
          refresh objtxt[].
          objtxt = space.
          APPEND objtxt.
          objtxt = 'Dear Sir/Madam,'.
          APPEND objtxt.
    Determining the Email Ids of Mail Receivers
          PERFORM fetch_mailids.
          objtxt = 'Copy to :'.
          APPEND objtxt.
          LOOP AT reclist.
            objtxt = reclist-receiver.
            APPEND objtxt.
          ENDLOOP.
          objtxt = space.
          APPEND objtxt.
          objtxt = '<This is system generated message>.'.
          APPEND objtxt.
          objtxt = space.
          APPEND objtxt.
    Mail Body of message over.
          DESCRIBE TABLE objtxt[] LINES v_lines_txt.
          CONCATENATE 'Inv.' invno INTO sub SEPARATED BY space.
          doc_chng-obj_name = sub.
          doc_chng-expiry_dat = sy-datum + 10.
    Mail Subject
          refresh objpack[].
          CONCATENATE 'Pricol Dispatch - Invoice' invno '- Reg.' INTO sub SEPARATED BY space.
          doc_chng-obj_descr = sub.
          doc_chng-sensitivty = 'F'.
          doc_chng-doc_size = v_lines_txt * 255.
          objpack-transf_bin = ' '.
          objpack-head_start = 1.
          objpack-head_num = 0.
          objpack-body_start = 1.
          objpack-body_num = v_lines_txt.
          objpack-doc_type = 'RAW'.
          APPEND objpack.
    *PDF Attachment
          DESCRIBE TABLE so_ali[] LINES lineno.
          objpack-transf_bin = 'X'.
          objpack-head_start = 1.
          objpack-head_num = 1.
          objpack-body_start = 1.
          objpack-doc_size = lineno * 255 .
          objpack-body_num = lineno.
          objpack-doc_type = 'PDF'.
          objpack-obj_name = 'INVOICE'.
          objpack-obj_descr = 'Invoice'.
          objpack-obj_langu = 'E'.
          APPEND objpack.
          CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          EXPORTING
          document_data = doc_chng
          put_in_outbox = 'X'
          commit_work = 'X'
          TABLES
          packing_list = objpack
          contents_txt = objtxt[]
          contents_bin = so_ali[]
    *contents_hex = so_ali[]
          receivers = reclist[]
          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.
            PERFORM mail.
            MESSAGE 'Mail sent successfully' TYPE 'S'.
    *SUBMIT RSCONN01 WITH MODE = MODE.
          ENDIF.

  • Adobe reader9 was installed monday, but now I can not read pdf files in windows mail

    I have windows vista. last saturday a popup asked if I wanted to install Adobe9. I clicked OK but later the install failed. talked with adobe support on monday and they installed adobe9 on my pc. however, when emails are sent to me with an attachment that is a PDF file, I can not open the attachment...it loads Acrobat.com instead.
    I think there is a incompatiblity between mail and this new adobe.
    l tried to reload adobe 8.2 but the install fails because it say I have a higher version (9).
    any help would be greatly appreciated since these attachments are info for my home business.
    thank you, larry

    thank you for your response.
    this procedure does work and I appreciate your help. I just wish that the
    PDF file could be opened in mail like it did before the new version was
    loaded. but in the mean time I have your work around.
    I plan on re-contacting adobe and see if they can un-install 9 and then I
    can install 8.2.
    regards, Larry

  • Problem sending pdf file

    Hi all,
    I need to send a sapscript via email.
    I convert the spool in pdf.
    If I try to download the internal table with pdf content I'm able to create correctly the pdf file on my pc.
    Insted, if  I send the contet of internal table with the pdf data via email, an error occured when I try to open the attached pdf file.
    regards
    enzo

    Hi,
    This below code may help you in case:
      DATA WA_OBJBIN LIKE SOLISTI1.
      DESCRIBE TABLE OBJTXT LINES PDFLINES.
    *-- A funtion module to convert otf to pdf format
      CALL FUNCTION 'SX_OBJECT_CONVERT_OTF_PDF'
        EXPORTING
          FORMAT_SRC            = 'OTF'
          FORMAT_DST            = 'PDF'
          DEVTYPE               = 'PRINTER'
        FUNCPARA              =
          LEN_IN                = PDFLINES
       IMPORTING
         LEN_OUT                = PDFLINES
        TABLES
          CONTENT_IN            = OBJTXT
          CONTENT_OUT           = OBJBIN
       EXCEPTIONS
         ERR_CONV_FAILED       = 1
         OTHERS                = 2
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      DESCRIBE TABLE OBJBIN LINES PDFLINES.
      DESCRIBE TABLE OBJTXT LINES TAB_LINES.
    *-- a perform to do the email
    *--   creation of the entry for the compressed document
      CLEAR OBJPACK-TRANSF_BIN.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM = 0.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM = TAB_LINES.
      OBJPACK-DOC_TYPE = 'RAW'.
      OBJPACK-DOC_SIZE = TAB_LINES * 255.
      APPEND OBJPACK.
    *-- creation of the entry for the attachment
      CLEAR OBJPACK.
      OBJPACK-TRANSF_BIN = 'X'.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM = 0.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM = PDFLINES.
         objpack-objname =
      OBJPACK-OBJ_DESCR = '%PDF-FILE.PDF'.
      OBJPACK-DOC_TYPE = 'PDF'.
      OBJPACK-DOC_SIZE = PDFLINES * 255.
      APPEND OBJPACK.
    *-- populating the t_receivers with mail address
    READ TABLE t_adr6 INDEX 1.
      IF NOT T_ADR6[] IS INITIAL.
        LOOP AT T_ADR6.
          T_RECEIVERS-RECEIVER = T_ADR6-SMTP_ADDR.
          T_RECEIVERS-REC_TYPE = 'U'.
          APPEND T_RECEIVERS.
          CLEAR T_RECEIVERS.
        ENDLOOP.
      ENDIF.
    *-- Calling a function module to send an E-mail
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          DOCUMENT_DATA                    = DOC_DATA
           PUT_IN_OUTBOX                    = 'X'
        IMPORTING
          SENT_TO_ALL                      =
          NEW_OBJECT_ID                    =
        TABLES
          PACKING_LIST                     = OBJPACK
         OBJECT_HEADER                     = OBJHEAD
         CONTENTS_BIN                      = OBJBIN
         CONTENTS_TXT                      = OBJTXT
        contents_hex                      = objbin
          OBJECT_PARA                      =
          OBJECT_PARB                      =
            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
      It may help you.
      try to rectify the mistake that you have in your program by checking this sample code....

  • Problem sending pdf files to convert to Word format

    When I try to send a pdf file to be converted to Word format, I keep getting error message.  "Unable to send"  What's the problem?

    Are you using the ExportPDF service?  How do you "send"?
    [topic moved to Acrobat.com Services forum]

  • Problem open pdf files from windows xp or W2K3(Not from Windows 7)

    Hi,
    i have some pdf files in a shared folder(W2K3).These are in other subfolders.Some of them cannot be opened .Right click options are limited (photo below).The weird thing is that happens when you try to open the files either from the server or a windows xp machine.From Windows 7 are opening normally.I thought of being an issue with file directory .Any idea ?
    Thanks

    I had to install adobe reader, but   PDF's used to display just fine with IE, any idea what happened ?
    Windows 8.1 pro.
    thx
    lee

  • I have an iPad 2, and I am sending PDF file to my iPad, via a Hotmail email. But, the PDF arrives to the iPad in Mail already opended, as a picture on the bottom of the email. Is there a way to prevent it from auto open, so I can open with iBooks instead?

    I have an iPad 2, and I am sending PDF files to my iPad, via a Hotmail account. But, the PDF arrives to the iPad Mail account already opened at the bottom of the email. Is there a way to prevent this auto-opening of the PDF. I've seen screen shots with the box, and PDF listed inside the box, but mine open automatically. I want to get them into iBooks...?

    I am having the same problem and it is even bigger.
    When opening a 1-page PDF in iBooks and sending it via mail it is sent inline as preview, but the recipient cannot open the file anymore. Also on iPad and iPhone there is no "open in" possible.
    Somehow the mail app does destroy the file. What is going wrong?

  • Problem to send PDF file

    Hello,
    I try to send pdf file as attachments file to mail with XI.
    I use with this blog
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6d967fbc-0a01-0010-4fb4-91c6d38c5816
    My problems is:
    1. to all mails that I send have another e file Untiteld.doc, how I can avoid this file?
    2. When I received the pdf file I not succeed to open it I received the message:
    Adobe reader could not open 'elad.pdf' because it is either not supported
    File type or because the file has been damaged (for example, it was sent as an
    Email attachment and wasn't correctly decoded)
    Regards
    Elad Peleg

    hi
    ref this
    Receiver Mail Adapter message with PDF attachment
    PDF attachment in mail adapter
    File adapter with attachment to mail
    File with attachment to mail scenario
    File To Mail Scenario With An Attachment

  • I cannot open a pdf file with aole-mail. I can open pdf files from windows explorer. I have associated pdf with adobe reader. My operating system is window

    I cannot open a pdf file with aol e-mail. I went to preferences in Adobe Reader but did not know what to enter for Incoming IMAP and outgoing SMTP. I can open pdf files from windows explorer as  I have associated .pdf files with adobe reader. My operating system is windows 7.
    When I try to open the pdf file within aol e-mail I get a message: 'Your security settings do not allow this file to be downloaded'.  I have not changed my security settings (Tools, Internet Options, security).

    Or http://helpx.adobe.com/acrobat/kb/pdf-browser-plugin-configuration.html

  • Not able to send pdf file as attachment in my apple mail.

    Hi, I was easily able to attach pdf files to my apple mail.  infact I could just open a pdf file and then send it as attachment in the email earlier. but after downloading and upgrading to os X Mountain lion, I am neither being able to attach and send pdf files in my apple mail, nor can I send PDF file as an attachment.
    Is there any issue with OS X Mountain Lion.
    Issue 1.  I compose Email , then click attach > Browse > select pdf file > click attach > it shows in my Email body either as an icon or as first page of the pdf document > I send it. >>> But when the receipient opens the Email, that pdf attachment is missing. In fact When I put a cc to my self and I open the Email, the attachment is mssing in the incoming E amil.
    Issue 2. I open the PDF document > Click on File > send as attachment in E-Mail > on right, a menu appears where I select the File and click attach> I get a message
    The SendMail doesnot know how to talk to your default mail client. Please select a different mail application to use. Attaching a screen shot.
    I never had these issues earlier with my Lion OS . but since the time I have upgraded to mountain Lion OS, I am having these issues.
    Are these the Mountain Lion issues, how to fix these please.

    I believe, the software team forgot to put a button for send or share as an attachment to preview.

  • HT1355 How to send 2 or more pdf files in e mail

    How to send 2 or more pdf files in e mail...????????

    Also i have a workspace created in html.oracle.com in that when i want to upload excel file or copy data from excel i am getting error as......
    ORA-20001: create_table error: ORA-20001: Excel load run ddl error: ORA-01658: unable to create INITIAL extent for segment in tablespace FLOW_6868Looks like the data you're trying to load will exceed your workspace quota (2MB small, 5MB medium). Try loading fewer rows.

  • Problems opening .pdf files created in Windows in MAC

    My clients that are using Macs are having problems opening password protected PDFs that I created in Windows. Any suggestions?

    Are your clients using Adobe Reader on Mac, or the built-in Mac OS Preview?  Preview does NOT support the full PDF standard :(.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Mon, 26 Sep 2011 15:04:18 -0700
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: Problems opening .pdf files created in Windows in MAC
    Problems opening .pdf files created in Windows in MAC
    created by Hollcy<http://forums.adobe.com/people/Hollcy> in PDF Language and Specifications - View the full discussion<http://forums.adobe.com/message/3939175#3939175

  • Can not open all .pdf files in Yahoo Mail.

    Three computers using Windows XP and Internet Explorer can open all .pdf files in Yahoo
    Mail. The fourth and newest Computer with XP Pro, Internet Explorer, and the latest Adobe
    Reader can only open some, but not all, .pdf files in Yahoo Mail. Nothing happens when
    the window is clicked to open file. How can this be fixed?

    Adobe Reader isn't my favorite, but neither are smug and uninformed assertions about Preview. There are PDFs that render only squares and marks under Preview (http://apple.stackexchange.com/questions/24209/this-pdf-displays-with-question-m arks-instead-of-letters), which is a common problem in MS Windows Office generated PDFs, so you may actually need Adobe Reader for Mac.
    If you need to use Adobe Reader (as I do), then it may depend on the filesystem type where you save your PDF.  For example, our Macs are network homed.  Saving to desktop produced the error reported above no matter whether I used Safari:Save As, or the PDF save icon. 
    However, when I saved to a local drive (such as /tmp), then it worked.  I don't know why file system makes a difference, unless Adobe is doing something with extended attributes that doesn't get written correctly to some filesystems.
    Hope this helps.

  • How can I attach a pdf file to outgoing mail without it opening up within the message?

    How can I attach a pdf file to outgoing mail without in opening up within the message?

    You can use the Share button on Preview's toolbar. Choosing Email pops open Mail with the PDF already iconified as an attachment. If it doesn't behave this nicely for you, select the PDF in Mail and choose the right contextual menu, where you will find View as Icon. I also have Send Windows-Friendly attachments enabled.

  • Opening a PDF file in windows 8.1 doesn't load the pdf

    I have an HTML code which is trying to read a pdf file in windows 8.1 . The problem is since windows 8.1 has its default pdf reader, so for the system which has adobe installed, pdf is not getting loaded.
    Can you please suggest any way to specify which pdf reader to be used for loading?
    Cheers

    Hi Pals28,
    Please consult Adobe forum about this PDF read related issue:
    https://forums.adobe.com/welcome
    Regards,
    Barry Wang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • Counting rows in a report

    Hi, I have a report page based on a SQL query. I then have a button on that page and when the user clicks it, I want to be able to loop through each of the records in the report to do some processing. I was thinking of using a for loop but not sure h

  • 12" Powerbook v 13" MacBook

    Hey guys, I'm after a little notebook for myself. I already have a 20" G5 iSight iMac and am, well I guess wanting a small ntoebook for myself. I've been looking at the 2 options that I consider my favourite, 12" Powerbook v 12" MacBook. I've gone ov

  • TV out card supplier in UK?

    I want to watch the odd avi from my K7N420 on my TV. The only supplier I have found wants £15 for the card (OK) and nearly £6 for postage. Any better deals around?  8)

  • How do I get rid of recording "skips"?

    Whenever I attemp to record a real instrument - mostly guitar - I invariably get at least one or two (sometimes many more) "skips." Usually these are loud digital spikes that cut out enough information to throw the part out of sync with the rest of t

  • DFM alert for shutting down a port?

    I am using LMS 3.2, and when are shutting down a port, I don't receive any alerts. Is there any alert for administratively shutting down a port of a device?