Email text overlapping pdf image

Our company sends out order confirmations which are getting scrambled when viewed on an iPad. The text of the email and the one page pdf attachment overlap in the viewing screen. Everything looks fine on a computer or the phone, it's just the pdf preview build in to the mail app that is making things weird. This does not happen with all pdf emails I get, just the one we are creating. is there an html tag or something to prevent this from happening?
thanks!

Our company sends out order confirmations which are getting scrambled when viewed on an iPad. The text of the email and the one page pdf attachment overlap in the viewing screen. Everything looks fine on a computer or the phone, it's just the pdf preview build in to the mail app that is making things weird. This does not happen with all pdf emails I get, just the one we are creating. is there an html tag or something to prevent this from happening?
thanks!

Similar Messages

  • Large alt text for pdf images

    I'm trying to include alt text for my pdf images but the text is over the character limit.  Is there any way to include longer alt text (for example through the use of an external file and a longdesc tag) in a pdf, or am I basically stuck with the character limit no matter what I do?

    Does anybody at Mozilla read this or is it just for venting frustrations?
    Alt-text is NOT just for when the image can't be displayed. For instance, in my work I use a particular kind of colour palette. It used to be that when I hovered over the little square showing the colour, that the colour number would appear. It's the ONLY way to know what colour you're dealing with, in this case.
    This used to be available in Firefox, but suddently it disappeared. This is forcing me to use Safari, which has this feature. But I prefer to work with Firefox.
    This is very frustrating!!!

  • Email:Text and PDF Forms

    Hi Experts,
    There is a requirement for sending smartform as Text attachements from one action and smartform as PDF attachements from another action.
    Kindly let me know,How can I do this?
    Thanks,
    Adi.

    Hi,
    The above reply requires spool i guess without that, we can do it this way.
    *& Report  ZTEST_ATTACHMENT
    REPORT  ztest_attachment.
    DATA: lf_fm_name            TYPE rs38l_fnam.
    DATA: ls_control_param      TYPE ssfctrlop.
    DATA: ls_composer_param     TYPE ssfcompop.
    DATA: ls_recipient          TYPE swotobjid.
    DATA: ls_sender             TYPE swotobjid.
    DATA: lf_formname           TYPE tdsfname.
    DATA: ls_addr_key           LIKE addr_key.
    DATA: document_output_info TYPE  ssfcrespd,
          tab_otf_data TYPE ssfcrescl,
          job_output_options TYPE ssfcresop.
    DATA: file_size TYPE i ,
          bin_filesize TYPE i ,
          my_tabix TYPE sy-tabix,
          w_complines TYPE i .
    DATA : pdf_tab LIKE tline OCCURS 0 WITH HEADER LINE ,
           pdf_buffered LIKE tline OCCURS 0 WITH HEADER LINE,
           itab TYPE TABLE OF ty_tab,
           itab_final TYPE itcoo OCCURS 0 WITH HEADER LINE,
           t_attach_data TYPE TABLE OF solisti1,
           t_objcont TYPE TABLE OF soli.
    DATA : w_email TYPE string VALUE ' '.
    TABLES: nast,                          "Messages
            *nast,                         "Messages
            tnapr,                         "Programs & Forms
            itcpo,                         "Communicationarea for Spool
            arc_params,                    "Archive parameters
            toa_dara,                      "Archive parameters
            addr_key.                      "Adressnumber for ADDRESS
    DATA price_print_mode(1) TYPE c.       "Print-mode
    DATA: retcode   LIKE sy-subrc.         "Returncode
    *"Work Areas for Sending Mail..........................................
    Data:
      wa_doc_data    TYPE sodocchgi1,      " Work Area to hold Attributes of New Document
      wa_pack        TYPE sopcklsti1,      " Work Area for Packing List of Main Document
      wa_objhead     TYPE solisti1,        " Work Area to store Header Text
      wa_messbody    TYPE solisti1,        " Work Area to store Message Body
      wa_receivers   TYPE somlrec90,       " Work Area to store Receiver Information
      wa_attach_data TYPE solisti1,        " Work Area to store the Attached Document
      wa_objcont     TYPE soli,            " Work Area to store data upto 255 Lines.
      t_receivers    LIKE TABLE OF wa_receivers,
      t_pack LIKE STANDARD TABLE OF wa_pack,
      t_messbody type table of solisti1,
      t_objhead like table of wa_objhead,
    *"Work Variables for Sending Mail......................................
      w_tablines     TYPE i,               " Variable to store Table Lines
      w_line         TYPE so_text255,      " Line of text
      w_title        LIKE kna1-anred.                           "#EC NEEDED
    PERFORM set_print_param CHANGING     ls_control_param
                                         ls_composer_param.
    determine smartform function module for test
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        formname           = 'Z_TESTYH1055'
      IMPORTING
        fm_name            = lf_fm_name
      EXCEPTIONS
        no_form            = 1
        no_function_module = 2
        OTHERS             = 3.
    IF sy-subrc <> 0.
    Write : 'Smart form name not recognised'.
    ENDIF.
    *Calling Function module generated by ssf call...
    CALL FUNCTION lf_fm_name
    EXPORTING
      ARCHIVE_INDEX              = ARCHIVE_INDEX
      ARCHIVE_INDEX_TAB          = ARCHIVE_INDEX_TAB
      ARCHIVE_PARAMETERS         = ARCHIVE_PARAMETERS
       control_parameters         = ls_control_param
      MAIL_APPL_OBJ              = MAIL_APPL_OBJ
      MAIL_RECIPIENT             = MAIL_RECIPIENT
      MAIL_SENDER                = MAIL_SENDER
       output_options             = ls_composer_param
       user_settings              = 'X'
    IMPORTING
      DOCUMENT_OUTPUT_INFO       = DOCUMENT_OUTPUT_INFO
       job_output_info            =  tab_otf_data
      JOB_OUTPUT_OPTIONS         = JOB_OUTPUT_OPTIONS
    EXCEPTIONS
       formatting_error           = 1
       internal_error             = 2
       send_error                 = 3
       user_canceled              = 4
    IF sy-subrc <> 0.
      Write : 'Function module name not recognised'.
    ENDIF.
    itab_final[] = tab_otf_data-otfdata[].
    *These lines to be inserted in case when two smart forms are called from the same program
    *DELETE tab_otf_data-otfdata WHERE tdprintcom = '//'.
    *READ TABLE itab_final WITH KEY tdprintcom = 'EP'.
    *my_tabix = sy-tabix + 1.
    *INSERT lines of tab_otf_data-otfdata INTO itab_final INDEX my_tabix.
    PERFORM otf_to_pdf.
    *&      Form  set_print_param
         Setting smart form print parameters
         <--P_LS_CONTROL_PARAM  text
         <--P_LS_COMPOSER_PARAM  text
         <--P_LS_RECIPIENT  text
         <--P_LS_SENDER  text
         <--P_RETCODE  text
    FORM set_print_param CHANGING cs_control_param TYPE ssfctrlop
                                  cs_composer_param TYPE ssfcompop.
      DATA: ls_itcpo     TYPE itcpo.
      DATA: lf_repid     TYPE sy-repid.
    *Setting composer parameters and control parameters for display
        cs_composer_param-tddest     = 'LP01'.                     "Note 591576
        cs_control_param-no_dialog   = 'X'.
        cs_control_param-preview     = space.
        cs_control_param-getotf      = 'X'.
    ENDFORM.                               " set_print_param
    *&      Form  otf_to_pdf
          Convrting Smart-form otf output into PDF Format
    -->  p1        text
    <--  p2        text
    FORM otf_to_pdf .
      CALL FUNCTION 'CONVERT_OTF'
       EXPORTING
         format                      = 'PDF'
         max_linewidth               = 132
        ARCHIVE_INDEX               = ' '
        COPYNUMBER                  = 0
        ASCII_BIDI_VIS2LOG          = ' '
        PDF_DELETE_OTFTAB           = ' '
       IMPORTING
         bin_filesize                = bin_filesize
        *     BIN_FILE                    = BIN_FILE
        TABLES
          otf                         = itab_final    "Otf file of type itcoo
          lines                       = pdf_tab       "Pdf file of type tline
      EXCEPTIONS
        ERR_MAX_LINEWIDTH           = 1
        ERR_FORMAT                  = 2
        ERR_CONV_NOT_POSSIBLE       = 3
        ERR_BAD_OTF                 = 4.
    Downloading the file recieved while conversion of otf 2 pdf
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
        bin_filesize                    = bin_filesize
        filename                        = 'D:/TEST4.PDF'
        filetype                        = 'BIN'
        APPEND                          = ' '
        WRITE_FIELD_SEPARATOR           = ' '
        HEADER                          = '00'
        TRUNC_TRAILING_BLANKS           = ' '
        WRITE_LF                        = 'X'
        COL_SELECT                      = ' '
        COL_SELECT_MASK                 = ' '
        DAT_MODE                        = ' '
        CONFIRM_OVERWRITE               = ' '
        NO_AUTH_CHECK                   = ' '
        CODEPAGE                        = ' '
        IGNORE_CERR                     = ABAP_TRUE
        REPLACEMENT                     = '#'
        WRITE_BOM                       = ' '
        TRUNC_TRAILING_BLANKS_EOL       = 'X'
        WK1_N_FORMAT                    = ' '
        WK1_N_SIZE                      = ' '
        WK1_T_FORMAT                    = ' '
        WK1_T_SIZE                      = ' '
       IMPORTING
         filelength                      = file_size
        TABLES
          data_tab                        = pdf_tab
        FIELDNAMES                      = FIELDNAMES
       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.
    Changing the pdf file size into the sixe reqd to send it as an attachment
      PERFORM conversion_of_size.
      PERFORM Subject_line_of_mail.
      PERFORM body_of_mail.
      PERFORM sending_of_mail.
    ENDFORM.                    " otf_to_pdf.
    *&      Form  conversion_of_size
    Changing the pdf file size into the sixe reqd to send it as an attachment
    FORM conversion_of_size .
    *"Declaring Local Constants............................................
      CONSTANTS:
         cnv_hexconst_zero TYPE x VALUE '00'.
    Internal table to hold 255 Char's Single Line.                      *
      DATA:
        lv_big_lines(268) TYPE c
                          OCCURS 0 WITH HEADER LINE.
    *"Local Work Variables.................................................
      DATA:
        lfl_flag          TYPE c,
        lv_left_t(268)    TYPE c,
        lv_left_i         TYPE i,
        tv_left_i         TYPE i,
        lv_curr_i         TYPE i.
      FIELD-SYMBOLS: <f>.
    Get the lines into a table of 268 char as the first step to put it in
    the pdf file of 255 chars
      CLEAR lfl_flag.
      LOOP AT pdf_tab INTO pdf_tab.
        IF lfl_flag EQ ' '.
          CLEAR lv_big_lines .
          ASSIGN lv_big_lines(134) TO <f>.
          <f> = pdf_tab.
          lfl_flag = 'X'.
        ELSE.
          lv_big_lines+134 = pdf_tab.
          APPEND lv_big_lines.
          CLEAR: lfl_flag.
        ENDIF.                             " If lfl_flag = ''..
      ENDLOOP.                             " Loop at t_pdf
      IF lfl_flag EQ 'X'.
        APPEND lv_big_lines.
      ENDIF.                               " If lflf_flag eq 'X'..
    Next fill it into a 255 char table
      CLEAR: lv_left_t, lv_left_i, tv_left_i.
      lv_curr_i = 255.
      LOOP AT lv_big_lines.
        IF lv_left_i NE 0.
          IF lv_curr_i NE 0.
            wa_objcont(lv_left_i)           = lv_left_t(lv_left_i).
            wa_objcont+lv_left_i(lv_curr_i) = lv_big_lines(lv_curr_i).
          ELSE.
            wa_objcont = lv_left_t(lv_left_i).
          ENDIF.                           " IF lv_curr_i NE 0
        ELSE.
          wa_objcont = lv_big_lines(lv_curr_i).
        ENDIF.                             " IF lv_left_i NE 0
        APPEND wa_objcont TO t_objcont.
        tv_left_i = 268 - lv_curr_i.
        IF tv_left_i > 255.
          wa_objcont = lv_big_lines+lv_curr_i(255).
          APPEND wa_objcont TO t_objcont.
          lv_left_i = tv_left_i - 255.
          tv_left_i = 255 + lv_curr_i.
          lv_curr_i = 255 - lv_left_i.
          lv_left_t = lv_big_lines+tv_left_i.
        ELSE.
          lv_left_t = lv_big_lines+lv_curr_i.
          lv_left_i = 268 - lv_curr_i.
          lv_curr_i = 255 - lv_left_i.
        ENDIF.                             " IF tv_left_i > 255
      ENDLOOP.                             " LOOP AT lv_big_lines.
      CLEAR wa_objcont .
      ASSIGN wa_objcont(lv_left_i) TO <f>.
      <f> = lv_left_t(lv_left_i).
      APPEND wa_objcont TO t_objcont.
    ENDFORM.                    " conversion_of_size
    *&      Form  Subject_line_of_mail
          text
    -->  p1        text
    <--  p2        text
    form Subject_line_of_mail .
        CONSTANTS:
        lc_f          TYPE c VALUE 'F',    " Sensitivity
        lc_objname(6) TYPE c VALUE 'SAPRPT'.
    *"Local Work Variables.................................................
      DATA:
        lc_descr(30) TYPE c.               " Object Description
      CLEAR wa_doc_data.
      CONCATENATE 'Test mail' '1' into lc_descr.
    *"Populate the subject/generic Message attributes......................
      wa_doc_data-doc_size   = 1.
      wa_doc_data-obj_langu  = sy-langu.
      wa_doc_data-obj_name   = lc_objname.
      wa_doc_data-sensitivty = lc_f.
      wa_doc_data-obj_descr  = lc_descr.
    endform.                    " Subject_line_of_mail
    *&      Form  body_of_mail
          text
    -->  p1        text
    <--  p2        text
    form body_of_mail .
        CONSTANTS:
          lc_doc_type(3) TYPE c VALUE 'RAW'.
      " Document type
      REFRESH:
        t_pack,
        t_messbody.
      CLEAR:
        wa_pack,
        wa_messbody.
    *"Preparing Message Body Text..........................................
      CONCATENATE 'This is sent to test for language solution , '
                  'Sorry for any inconvience caused'
                   INTO wa_messbody-line.
      APPEND wa_messbody TO t_messbody.
      wa_messbody-line = text-004.
      APPEND wa_messbody TO t_messbody.
      DESCRIBE TABLE t_messbody LINES w_tablines.
      READ TABLE t_messbody INTO wa_messbody  INDEX w_tablines.
    *"Setting up Document Data Attribute...................................
      wa_doc_data-doc_size = w_tablines.
    *"Setting up Packing List Attributes...................................
      wa_pack-transf_bin = ' '.
      wa_pack-head_start = 1.
      wa_pack-head_num   = 0.
      wa_pack-body_start = 1.
      wa_pack-body_num   = w_tablines.
      wa_pack-doc_type   = lc_doc_type.
      APPEND wa_pack TO t_pack.
    endform.                    " body_of_mail
    *&      Form  sending_of_mail
          Sending of mail with attachment
    form sending_of_mail .
       Refresh:
        t_objhead,
        t_attach_data.
      CLEAR:
        wa_attach_data.
    Moving the table Recieved after conversion type soli
      t_attach_data = t_objcont.
      DESCRIBE TABLE t_attach_data LINES w_tablines.
      wa_doc_data-doc_size   = w_tablines.
    *"Setting up Packing List Attributes...................................
      wa_pack-transf_bin = 'X'.
      wa_pack-head_start = 0.
      wa_pack-head_num   = 0.
      wa_pack-body_start = 0.
      wa_pack-body_num   = w_tablines.
      wa_pack-doc_size   = w_tablines *  255.
      wa_pack-doc_type   = 'PDF'.
      wa_pack-obj_name   = 'Attachment'.
      wa_pack-obj_descr  = 'This is a SAP Report'.
      APPEND wa_pack TO t_pack.
    *"Setting up Receiver Attributes.......................................
      wa_receivers-receiver = w_email.
      wa_receivers-rec_type = 'U'.
      APPEND wa_receivers TO t_receivers.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
        EXPORTING
          document_data                    = wa_doc_data
         put_in_outbox                    = 'X'
      SENDER_ADDRESS                   = SY-UNAME
      SENDER_ADDRESS_TYPE              = 'B'
         commit_work                      = 'X'
    IMPORTING
      SENT_TO_ALL                      = SENT_TO_ALL
      NEW_OBJECT_ID                    = NEW_OBJECT_ID
      SENDER_ID                        = SENDER_ID
        TABLES
          packing_list                   = t_pack
       OBJECT_HEADER                     = t_objhead
        contents_bin                     = t_attach_data
        CONTENTS_TXT                     = t_messbody
      CONTENTS_HEX                     = CONTENTS_HEX
      OBJECT_PARA                      = OBJECT_PARA
      OBJECT_PARB                      = 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
      IF sy-subrc EQ 0 .
        WRITE : 'Mail sent'.
      ENDIF.
    endform.                    " sending_of_mail
    Try this.
    Regards,
    Nisrin.

  • Email printed to PDF, PDF appears accurate in Acrobat XI Pro, when PDF printed to paper text missing

    HELP!!!
    I have text disappear from Outlook emails printed to PDF when I print the PDF files from Acrobat XI Pro to a printer.
    Here is a sample png from the PDF file printed out of Outlook - all the text is showing.
    However when I print the PDF from Acrobat to a printer, the document comes out of the printer with text missing as shown:
    The Acrobat print window shows all of the text that should be there as does Acrobat's view of the document.
    Also, if I save the file to an image, all of the text is there.
    I have tried different emails as well as different printers and the paper printed copies of the PDF emails are always missing text.
    Additionally I have tried coverting the PDF file to a PDF/A file and printing that and the same problems occur.
    Please send some tips as to how I can fix this!

    Hello Atul -
    i am having similar printing issues with Acrobat 10.1.4.
    in my case both PDFs made by me (from InDesign files) and other PDFs made elsewhere and sent to me are missing text when printed to paper -though they look fine both on-screen and in the preview pane, as Katy noted above.
    these PDFs print fine when i open and print from an older version of Acrobat (9.5.2).
    they will also print fine from 10.1.4 if i send them to another printer in the office, (a Dell Color Laser 3110cn), the printer i have a problem with is a Kyocera Mita KM-5053 - which leads me to believe that this is some kind of communication error between Adobe Acrobat Pro 10.1.4 and this printer, or perhaps a driver issue. ?
    I don't believe it's merely a preferences/print settings problem as i've gone pretty carefully through all the dialog boxes that seem relevant and have had no luck in solving the problem. Also, the text that's missing seems arbitraty - meaning, it's not merely hyperlinks or certain layers or text in specific type faces that won't print -it's content in the same text box, where other text does print, and it's blacks and colors and various point sizes - in short there are no easily discernable unifying circumstances among the text that does not print.
    obvioulsy an easy work around is to just print to the other printer or use the older version of Acrobat, but my concern is more that other people may be experiencing the same issues with PDFs i send them. so if it is a problem in the way i'm generating PDFs (although, as i said, text is also missing from PDFs i have received from other people and printed) i'd like to fix it quickly, so that people trying to print my PDFs don't end up with critical content missing.
    i'm on a 2008 MacBook Pro running Mac OS X Lion 10.7.5, and using the Acrobat (X Pro v 10.1.4) that came with the CS6 Design & Web Premium package - although i'm looking at it online now and it's listed as Acrobat XI Pro..
    any input you have would be much appreciated.
    thank you,
    bethany

  • How to import PDF image into Pages manuscript that is larger than the text bed margins

    How do I import a PDF image into a Pages book manuscript, whose dimensions are larger than the global text bed margins? Any imported PDF image is automatically shrunk to fit within the text bed. I know I can set up a single page with wider margins and a text bed within it, but I want the image to import to a page already within the manuscript sequence, where the text bed margins are set and constant.
    Larry Kettelkamp
    [email protected]

    By default it should be dragging in as a floating image and not part of the text.
    What version of Pages are you using?
    In Pages 5 this is:
    Format > Arrange > Object Placement > Stay on Page > Size > Original size
    Peter

  • How to convert from image based pdf to text based pdf

    I have Adobe 9 Pro. How to convert from image based pdf to text based pdf? For example, if someone emails a scanned pdf to me, how do I convert that document into a text based pdf?

    To perform OCR, open the document and select: Document > OCR Text Recognition > Recognize Text Using OCR
    More information on the various options is in the Acrobat help doc.

  • Email attachment in PDF problem with Images

    Hi All,
    Can any one tell me how to solve the problem with Email attachment in PDF. If i remove the logo of the client in the Smartform i am getting the Email attachment fine but when i put back the image in the smartform the PDF is giving error and not opening the attachment.
    Regards,
    Lakshmikanth.

    Hi All,
    Can any one tell me how to solve the problem with Email attachment in PDF. If i remove the logo of the client in the Smartform i am getting the Email attachment fine but when i put back the image in the smartform the PDF is giving error and not opening the attachment.
    Regards,
    Lakshmikanth.

  • Why can't I "Save as Text" a pdf file received as an email attachment?

    I can "Save as text" a pdf file which I have created in my own computer (that is, it goes into MS notebook that I then can Copy and Save as an MS Word file) but not when I receive a pdf as an email attachment. (The file is saved, but it is empty.) Why would I want to convert my own pdf back to text? Well, in case I no longer have the original Word document I suppose, but the thing is "Save as text" works with my pdf, but not with those I recieve from others. How come? Thanks!

    Is this a scanned PDF? If so, it must first be OCR'd.

  • 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

  • Improving existing PDF image quality without losing text

    I have finished PDFs, the result of an OCR process that produced text under image files.  I would like to modify the lighting of the images without changing the text part of the PDF.  Is this possible in any version of Acrobat Pro?  And, if so, which version and how is it done?

    I tried to do that, but I can't get Photoshop to deal withn the whole document--only single pages. and the document is over 200 pages long.  I can save the PDF images in some image format and edit the batch, but then I can't get them reconnected to the text.  (I have used batch processes in Photoshop, but it won't regard the PDF document as a batch.)  So, I seem stuck wither way. It seems as if there is no way to improve images in a text-under-image PDF while using Acrobat Pro--which was my original question.
    If there is a way that any one knows about, I would love to hear about it.

  • Pdf image whit text want to convert in  word

    pdf image whit text want to convert in  word

    Please post your question at this link:
    <https://forums.adobe.com/community/acrobat/creating__editing_%26_exporting_pdfs>
    And also explain better because an image is an image and it can't be
    changed to anything else but if you explain your requirements then
    somebody will come out with a solution for you.
    Good luck.

  • Using eprint to print photos with email text on one page

    I have been using Presto eprint services for several years for my Dad, and I really like how it works and allows me to print the email (from, to, text in the body of the email), plus any attachments, all on one page using full letter size paper  However, my parents would like to get rid of their land-line phone, so I'm looking for options to replace the Presto printer.  I was thinking that HP eprint might be a good option, but based on some initial tests with a friends printer, it seems to just print photos as full page images, without the email content.  Is there anyway to confirgure the HP eprint function to print the email text and photos or PDF file attachment on one page?  Thanks.

    Hello @Joseph_TX ,
    Welcome to the HP forums.
    I understand that you want to know if a way to configure the HP ePrint.
    I would like to help.
    Unfortunately there is no way to reconfigure the ePrint.
    When you send an email to the printers ePrint address, it will print the body of the email and any attachments.
    It will not print the subject line or who the email is from.
    Also the ePrint feature will not resize pictures sent.
    What you send is what you get.
    You can get more control over ePrint with the ePrint app, but I don't believe that will suit your needs.
    Please call our Cloud Services at 855-785-2777.
    If you live outside the US/Canada Region, please click the link below to get the support number for your region. http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
    Hours:
    Mon-Fri. 8am - 11pm, Sat. 9am-8pm - EST
    Mon-Fri. 7am - 10pm, Sat. 8am-7pm - CST
    Mon-Fri. 6am - 9pm, Sat. 7am-6pm - MST
    Mon-Fri. 5am - 8pm, Sat. 6am-5pm - PST
    Aardvark1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!

  • How to change text in PDF doc. which is a musical score

    Hello,
    I'm new here, so please excuse me if I do or say something I shouldn't.
    I need to change the words in a musical score because the font is too small. OCR recognition doesn"t work because there are illustrations that are different from images or text... Is there a way to get in there and make the changes I need to do?
    Any help greatly appreciated.

    Thanks for the reply, but I have Adobe Reader 9 Pro. Will it still not 
    work ?
    Le 29 sept. 2011 à 29 sept. 11 - 16:09, Claudio González a écrit :
    Re: How to change text in PDF doc. which is a musical score
    created by Claudio González in Adobe Reader - View the full discussion
    Unfortunately, not with the free Reader.
    Replies to this message go to everyone subscribed to this thread, 
    not directly to the person who posted the message. To post a reply, 
    either reply to this email or visit the message page: [http://forums.adobe.com/message/3944833#3944833
    To unsubscribe from this thread, please visit the message page at [http://forums.adobe.com/message/3944833#3944833
    ]. In the Actions box on the right, click the Stop Email 
    Notifications link.
    Start a new discussion in Adobe Reader by email or at Adobe Forums
    For more information about maintaining your forum email 
    notifications please go to http://forums.adobe.com/message/2936746#2936746

  • I got an email with a pdf.  Is it possible to move it into Pages and be able to edit it?

    I got an email with a pdf.  Is it possible to move it into Pages and be able to edit it?

    You can import the pdf as an image but it is not editable.
    If you are after the text, open it in Preview and copy the text and paste it wherever you want, or open it in Adobe Acrobat Pro and convert it into a Word .doc.
    Peter

  • How can I upload a PDF image with out it going grainy

    i am trying to write an adobe form and I need to have the names of the authors at the bottom of the page in columns, It seems impossible to do this by entering the text into the box on the form as the spacing doesn't work. I  have made a PDF image of what I want to write but each time I upload it it becomes grainy. If I save it as a PNG or TIFF it is still grainy - even if I reduce the file size to the required number of pixels - please help me!

    Please share your form with me ([email protected]) as a co-author. Also send me the image you are trying to add to you form.
    Instructions on how to share : http://forums.adobe.com/docs/DOC-2462
    I'll see if I can help you
    Gen

Maybe you are looking for

  • RichFaces' Ajax4JSF in NetBeans 6 not Rendering components

    Hi, My environment is Netbeans 6 visual web JSF app with RichFaces 3.1.3. I am unable to get any component to rerender upon completion of an ajax request. Is there something wrong in the logic i am following or is it a configuration issue or is it a

  • How to Design Attractive Logo In Adobe Photoshop?

    Hi          I am working on adobe Photoshop to design a Logo for a Recruitment Job Portal E-Recruitment Hub - Govt Jobs Notification 2014 Online Application Form and  i am trying to making an attractive logo for this jobs site. Dear all please sugges

  • Pass value to a field dynamically..

    Hi Experts, Can any one solve this issue?. I want to pass value to different fields dynamically.. Egu2026 I have work are having fields lwa_table-var1, lwa_table-var2, lwa_table-var3, lwa_table-var4, u2026.. up to lwa_table-var100. My logic is I have

  • Connecting to hi-fi

    I want to connect my mini Mac to the receiver on my hi-fi. I did it going from the headphone port on the mini to the phono input on the hi-fi. I get sound but it is very poor quality. Any suggestions as to how I can improve the sound? Thanks in advan

  • Drop shadow from one master appearing on a page with a different master CS5

    I have a series of curriculum books that make use of two different page styles controlled by two masters. On occasion in the books, the two masters appear side by side in a spread. Both masters contain similar background graphics but one has more sid