Email Invoice as PDF

Hi folks,
I'm trying to send a sapscript/smartform invoice as a PDF attached to an email.  I've been reading a number of posting on this topic but it is still unclear to me how to get this to work.  (R/3 4.7)
I need to setup a new output type with transmission media 5.  Is that correct?  The email address will be pulled from the customer's master data record.  Correct?
What do I use as the processing routine?  Do I have to create a custom routine?
Do I need to define a communications strategy with communication type INT?
As I understand it, the system will automatically convert to PDF as long as SCOT is configured that way (default). 
What else am I missing?
Thanks everyone,
Clint

Hi,
1.No need to create the custom routine.
  2.The system default cann't generate the PDF.It generates OTF , Format.
  3.We need to convert the OTF into PDF.
  4.You have to maintain the Email in SCOT.
The following is the code for sending through mail for script:
Best LInk:
/people/pavan.bayyapu/blog/2005/08/30/sending-html-email-from-sap-crmerp
Observe this:
REPORT Z_SCRIPT .
DATA: itcpo LIKE itcpo,
tab_lines LIKE sy-tabix.
Variables for EMAIL functionality
DATA: maildata LIKE sodocchgi1.
DATA: mailpack LIKE sopcklsti1 OCCURS 2 WITH HEADER LINE.
DATA: mailhead LIKE solisti1 OCCURS 1 WITH HEADER LINE.
DATA: mailbin LIKE solisti1 OCCURS 10 WITH HEADER LINE.
DATA: mailtxt LIKE solisti1 OCCURS 10 WITH HEADER LINE.
DATA: mailrec LIKE somlrec90 OCCURS 0 WITH HEADER LINE.
DATA: solisti1 LIKE solisti1 OCCURS 0 WITH HEADER LINE.
*PERFORM send_form_via_email.
FORM SEND_FORM_VIA_EMAIL *
FORM send_form_via_email.
CLEAR: maildata, mailtxt, mailbin, mailpack, mailhead, mailrec.
REFRESH: mailtxt, mailbin, mailpack, mailhead, mailrec.
Creation of the document to be sent File Name
maildata-obj_name = 'TEST'.
Mail Subject
maildata-obj_descr = 'Subject'.
Mail Contents
mailtxt-line = 'Here is your file'.
APPEND mailtxt.
Prepare Packing List
PERFORM prepare_packing_list.
Set recipient - email address here!!!
mailrec-receiver = 'email.COM'.
mailrec-rec_type = 'U'.
APPEND mailrec.
Sending the document
CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
EXPORTING
document_data = maildata
put_in_outbox = ' '
TABLES
packing_list = mailpack
object_header = mailhead
contents_bin = mailbin
contents_txt = mailtxt
receivers = mailrec
EXCEPTIONS
too_many_receivers = 1
document_not_sent = 2
operation_no_authorization = 4
OTHERS = 99.
ENDFORM.
Form PREPARE_PACKING_LIST
FORM prepare_packing_list.
CLEAR: mailpack, mailbin, mailhead.
REFRESH: mailpack, mailbin, mailhead.
DESCRIBE TABLE mailtxt LINES tab_lines.
READ TABLE mailtxt INDEX tab_lines.
maildata-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( mailtxt ).
Creation of the entry for the compressed document
CLEAR mailpack-transf_bin.
mailpack-head_start = 1.
mailpack-head_num = 0.
mailpack-body_start = 1.
mailpack-body_num = tab_lines.
mailpack-doc_type = 'RAW'.
APPEND mailpack.
Creation of the document attachment
This form gets the OTF code from the SAPscript form.
If you already have your OTF code, I believe that you may
be able to skip this form. just do the following code, looping thru
your SOLISTI1 and updating MAILBIN.
PERFORM get_otf_code.
LOOP AT solisti1.
MOVE-CORRESPONDING solisti1 TO mailbin.
APPEND mailbin.
ENDLOOP.
DESCRIBE TABLE mailbin LINES tab_lines.
mailhead = 'TEST.OTF'.
APPEND mailhead.
Creation of the entry for the compressed attachment
mailpack-transf_bin = 'X'.
mailpack-head_start = 1.
mailpack-head_num = 1.
mailpack-body_start = 1.
mailpack-body_num = tab_lines.
mailpack-doc_type = 'OTF'.
mailpack-obj_name = 'TEST'.
mailpack-obj_descr = 'Subject'.
mailpack-doc_size = tab_lines * 255.
APPEND mailpack.
ENDFORM.
Form GET_OTF_CODE
FORM get_otf_code.
DATA: BEGIN OF otf OCCURS 0.
INCLUDE STRUCTURE itcoo .
DATA: END OF otf.
DATA: itcpo LIKE itcpo.
DATA: itcpp LIKE itcpp.
CLEAR itcpo.
itcpo-tdgetotf = 'X'.
Start writing OTF code
CALL FUNCTION 'OPEN_FORM'
EXPORTING
form = 'Z08V3_COLLI'
language = sy-langu
options = itcpo
dialog = ' '
EXCEPTIONS
OTHERS = 1.
CALL FUNCTION 'START_FORM'
EXCEPTIONS
error_message = 01
OTHERS = 02.
CALL FUNCTION 'WRITE_FORM'
EXPORTING
window = 'MAIN'
EXCEPTIONS
error_message = 01
OTHERS = 02.
Close up Form and get OTF code
CALL FUNCTION 'END_FORM'
EXCEPTIONS
error_message = 01
OTHERS = 02.
MOVE-CORRESPONDING itcpo TO itcpp.
CALL FUNCTION 'CLOSE_FORM'
IMPORTING
result = itcpp
TABLES
otfdata = otf
EXCEPTIONS
OTHERS = 1.
Move OTF code to structure SOLI form email
CLEAR solisti1. REFRESH solisti1.
LOOP AT otf.
solisti1-line = otf.
APPEND solisti1.
ENDLOOP.
ENDFORM
Below points is for ur testing purpose.
U can check the status of the mail in the transaction SOST.
Execute this transaction for the date range. If the traffic light is in yellow colour then do like this.
Utilities->Start send process->Give trans method as INT and press enter. Mail will go immediately.
If the above logic don't work for u then TRY FM SO_OBJECT_SEND for sending mail.
for Smartform converting the OTF to PDF:
REPORT zsuresh_test.
Variable declarations
DATA:
w_form_name TYPE tdsfname VALUE 'ZSURESH_TEST',
w_fmodule TYPE rs38l_fnam,
w_cparam TYPE ssfctrlop,
w_outoptions TYPE ssfcompop,
W_bin_filesize TYPE i, " Binary File Size
w_FILE_NAME type string,
w_File_path type string,
w_FULL_PATH type string.
Internal tables declaration
Internal table to hold the OTF data
DATA:
t_otf TYPE itcoo OCCURS 0 WITH HEADER LINE,
Internal table to hold OTF data recd from the SMARTFORM
t_otf_from_fm TYPE ssfcrescl,
Internal table to hold the data from the FM CONVERT_OTF
T_pdf_tab LIKE tline OCCURS 0 WITH HEADER LINE.
This function module call is used to retrieve the name of the Function
module generated when the SMARTFORM is activated
CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
EXPORTING
formname = w_form_name
VARIANT = ' '
DIRECT_CALL = ' '
IMPORTING
fm_name = w_fmodule
EXCEPTIONS
no_form = 1
no_function_module = 2
OTHERS = 3
IF sy-subrc 0.
MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
Calling the SMARTFORM using the function module retrieved above
GET_OTF parameter in the CONTROL_PARAMETERS is set to get the OTF
format of the output
w_cparam-no_dialog = 'X'.
w_cparam-preview = space. " Suppressing the dialog box
" for print preview
w_cparam-getotf = 'X'.
Printer name to be used is provided in the export parameter
OUTPUT_OPTIONS
w_outoptions-tddest = 'LP01'.
CALL FUNCTION w_fmodule
EXPORTING
ARCHIVE_INDEX =
ARCHIVE_INDEX_TAB =
ARCHIVE_PARAMETERS =
control_parameters = w_cparam
MAIL_APPL_OBJ =
MAIL_RECIPIENT =
MAIL_SENDER =
output_options = w_outoptions
USER_SETTINGS = 'X'
IMPORTING
DOCUMENT_OUTPUT_INFO =
job_output_info = t_otf_from_fm
JOB_OUTPUT_OPTIONS =
EXCEPTIONS
formatting_error = 1
internal_error = 2
send_error = 3
user_canceled = 4
OTHERS = 5
IF sy-subrc 0.
MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
t_otf] = t_otf_from_fm-otfdata[.
Function Module CONVERT_OTF is used to convert the OTF format 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 = W_bin_filesize
BIN_FILE =
TABLES
otf = T_OTF
lines = T_pdf_tab
EXCEPTIONS
ERR_MAX_LINEWIDTH = 1
ERR_FORMAT = 2
ERR_CONV_NOT_POSSIBLE = 3
ERR_BAD_OTF = 4
OTHERS = 5
IF sy-subrc 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
To display File SAVE dialog window
CALL METHOD cl_gui_frontend_services=>file_save_dialog
EXPORTING
WINDOW_TITLE =
DEFAULT_EXTENSION =
DEFAULT_FILE_NAME =
FILE_FILTER =
INITIAL_DIRECTORY =
WITH_ENCODING =
PROMPT_ON_OVERWRITE = 'X'
CHANGING
filename = w_FILE_NAME
path = w_FILE_PATH
fullpath = w_FULL_PATH
USER_ACTION =
FILE_ENCODING =
EXCEPTIONS
CNTL_ERROR = 1
ERROR_NO_GUI = 2
NOT_SUPPORTED_BY_GUI = 3
others = 4
IF sy-subrc 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
Use the FM GUI_DOWNLOAD to download the generated PDF file onto the
presentation server
CALL FUNCTION 'GUI_DOWNLOAD'
EXPORTING
BIN_FILESIZE = W_bin_filesize
filename = w_FULL_PATH
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 =
tables
data_tab = T_pdf_tab
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
OTHERS = 22
IF sy-subrc 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
Regards,
If helpful give points(Don't forget)

Similar Messages

  • Sending Invoice as PDF in email

    Hello,
    I have a requirement where I have to send Proforma Invoice as PDF in email.
    Now, the Proforma Invoice is already using output type to Print and when I see the routines in Tcode NACE
    It uses RVADAUS1 Program where it calls RV_EXPORT_DOCUMENT_PRINT function module to generate the Print document.
    This works fine.
    So, I created a new output type, copied the  RVADAUS1 to ZRVADAUS1 and modified the code where I am capturing the Spool generated through the original code and pass it to CONVERT_ABAPSPOOLJOB_2_PDF to convert it to PDF and then send it as an email.
    Now, the problem I am facing is that, I am not able to generate a Spool when I am using the medium ( '5' External Send ). So the further code of capturing Spool and convert to PDF and send as email fails.
    Any guidance is appreciated.
    Regards,
    DNP

    Hi Sudhanshu,
    Just before calling the function module RV_EXPORT_DOCUMENT_PRINT.
    I forced TNAPR-NACHA = '1'. and NAST-NACHA = '1'.
    which means I forced Transmission medium as 1(Print) instead of 5(External Send)
    This created a SPOOL.
    Regards,
    DNP
    Edited by: DNP on Aug 14, 2009 11:45 AM

  • Convert invoice to PDF format and send email automatically

    Hello,
    We have a requirement weherin when a billing document is created in SD with transaction code VF01, the invoice should automatically get converted to PDF and mail should be sent to the customer's external email id.
    Please seggest how this can be done.
    RR

    check this Email Invoice as PDF

  • EMAIL Invoice to customer

    Need some help on Email invoicing.
    I have a requirement to send the invoices via email in PDF format. I configured an Output type with the medium u20185u2019, it works fine. However there is another requirement to add some specific text as the content in the email (depending up on country and language). I understand that this text can be maintained in SO10, but no idea how to get that in the email.
    Could you through some light on this.
    regards,
    santosh

    Hi,
    Check with your ABAPer if you can use the text from SO10 with INCLUDE statement or functional module READ_TEXT.
    Regards,
    Abhee

  • Vendor payment Advice Email Sending with PDF

    Hi Experts,
    I need to develop a program when the user completes his transaction from F110.
    It need to trigger a email to vendor about the payment terms along with the Reference Number & Invoice no. & Currency, as a PDF Attachment.
    I have searched in the SCN before posting and I got lot of good results but I not found any PDF attachment and any coding,
    Please help me out.
    this is the BTE asked to implement,
    ZSAMPLE_PROCESS_00002040
    After implementing what to do.
    Server is comfigured well and we have a PO auto email now in the system.
    need a new program to send PDF attachment to vendor for payment advice.
    Thanks in advance.
    -Dunlop.

    Hi,
    The below standard function module is capable of sending the email with the pdf attachment.
    But it is your responsiblity how you fill the internal tables here.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = lwa_doc_chng
          put_in_outbox              = 'X'
          commit_work                = 'X'
        IMPORTING
          sent_to_all                = lw_sent_to_all
        TABLES
          packing_list               = lt_packing_list
          object_header              = lt_objhead
          contents_bin               = itab_255                
          contents_txt               = lt_objtxt
          receivers                  = lt_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.
    Regards,
    Santhosh.

  • Is it possible to send a copy of invoice as PDF files to sales agents by e-

    Hi All,
    Please let me know my client needs this below requirement,
    Is it possible to send a copy of invoice as PDF files to sales agents by e-mail triggered by the invoicing or is it only possible manually through ZPDF?
    Best Regards
    Aditya

    Hi,
    Yes,It is possible to send an email as PDF file to desired people.
    For this we have to use the medium as "5(External send)".
    Also maintain the further data as "4".
    Ask your ABAPer to write a code to send the e-mail to sales agents.
    We have a similar requirement in our project also to send a PDF.We have developed a "Z" program and developed a "Z" smartform too.
    Regards,
    Krishna.

  • Print normal invoice and send invoice as pdf to creator of invoice

    Hello to all,
    this is my first post in this big, special and great community. 
    Many thanks to all people in background for realizing and customizing !
    I have a request to print the normal invoice and to send the invoice as pdf copy to the creator of the invoice at the same time.
    Using include RVADOPFO and medium 5 would be the correct solution, if I could use the email field in customer master data entering the mail adress of the creator.
    But it is not possible, the field is used otherwise.
    Can anybody help me to solve the problem ?
    Thanks in advance and regards
    Claus

    Hi,
    One Print Program is sufficient to generate the Print invoice and send the Invoices as PDF to  customer.
    In the NACE transaction code , In the OUTPUT TYPE define a output with the  Transaction medium as 1 & 5
    In the CONDITION RECORDS in VV33 also maintain the MEDIUM as 1 and 5
    Alternatively you can you one program to generate the PDF and save to your LOCAL file and send to customer
    The PROGRAM to generate the PDF is  RSTXPDFT4
    Please check them and let us know your feedback
    regards,
    santosh

  • It possible to send a copy of invoice as pdf files to sales agents bye-mail

    Hi All,
    Please let me know, is it possible to send a copy of invoice as pdf files to sales agents by e-mail triggered by the invoicing or is it only possible manually through ZPDF.
    If Possible please let know how to achieve it.
    Aditya

    Hi Adi,
    Go through the link given below, Hope it helps.
    Sending Invoice as PDF in email
    http://wiki.sdn.sap.com/wiki/display/Snippets/Smartform%2bto%2bMail%2bas%2bPDF%2battachment
    Also go through the notes given below
    Note 454893 - CHECKLISTSD: Sales document output as an e-mail
    Note 753622 - Sending of body text and PDF attachment with medium 5
    Note 960088 - FAQ: Sending SD messages externally
    Regards,
    MT

  • Emailing Invoices

    We are now setting up a requirement from the business to email invoices to our customers.
    I am wondering if there is a way to configure to email the invoice but not print the invoice without having to maintain Output condition records for each customer, which could be alot of maintenance.
    Is there a new key combo we can set up to identify that either the invoice is emailed or printed, not both.
    Any info you can provide would be helpful.
    Regards

    You can ask your abaper to write a programme for  converting the invoices to pdf  format(there are many programmes available  for converting text to Pdf) .After that you can map the programme to customer master email id field. Then you can schedule the programme every day ,it will check the invoices  happened on same day  and also check the customer then mail will triggered to the customer automatically. Please ignore if this is not  your requirement
    Regards
    Raneesh C N

  • Send email from a PDF report

    I have a report that get customers, I have to call another report to print a pdf letter to send to that customer. In the master report I have the code in the Function AfterReport:
    srw.run_report('report=XXFACVEN.rdf batch=yes desformat=pdf
    desname=[email protected] destype=mail
    P_SET_OF_BOOKS_ID=' || '' || :P_SET_OF_BOOKS_ID || '' || ' DIAS_DESDE_HOY=' || '' || :DIAS_DESDE_HOY || '' || ' P_CLIENTE=' || '' || :P_CLIENTE || '');
    The master report execute ok and the report XXFACVEN is also executed. I get an email like this:
    %PDF-1.1
    1 0 obj
    <<
    /Creator (Developer 2000)
    /CreatorDate (Mon Feb 09 11:07:14 AM 2009)
    /Author (Oracle Reports)
    /Producer (Oracle PDF driver)
    /Title (srw00932622.pdf)
    >>
    endobj
    5 0 obj
    <</Length 6 0 R>>
    stream
    BT
    36.00 782.87 TD
    If I save this text, I think is EPS, in an editor and save the file like name.pdf and I double click to the new file I get the pdf file.
    Why I get the code (%PDF-1.1 1 0 obj << .....) and I don't get the pdf file.
    I am using Report Builder 6.0.8.26.0. I run the report like a request from the EBS.
    Thank you.

    I have a report that get customers, I have to call another report to print a pdf letter to send to that customer. In the master report I have the code in the Function AfterReport:
    srw.run_report('report=XXFACVEN.rdf batch=yes desformat=pdf
    [email protected] destype=mail
    P_SET_OF_BOOKS_ID=' || '' || :P_SET_OF_BOOKS_ID || '' || ' DIAS_DESDE_HOY=' || '' || :DIAS_DESDE_HOY || '' || ' P_CLIENTE=' || '' || :P_CLIENTE || '');
    The master report execute ok and the report XXFACVEN is also executed. I get an email like this:
    %PDF-1.1
    1 0 obj
    <<
    /Creator (Developer 2000)
    /CreatorDate (Mon Feb 09 11:07:14 AM 2009)
    /Author (Oracle Reports)
    /Producer (Oracle PDF driver)
    /Title (srw00932622.pdf)
    >>
    endobj
    5 0 obj
    <</Length 6 0 R>>
    stream
    BT
    36.00 782.87 TD
    If I save this text, I think is EPS, in an editor and save the file like name.pdf and I double click to the new file I get the pdf file.
    Why I get the code (%PDF-1.1 1 0 obj << .....) and I don't get the pdf file.
    I am using Report Builder 6.0.8.26.0. I run the report like a request from the EBS.
    Thank you.

  • 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.

  • How do I email an attached pdf file to stationary templates in mail.

    How do I email an attach PDF file using the stationary templates in mail on lion.
    I attached the PDF but when try to send it I get back a dialog box that sez:
    "This message cannot be sent because it uses stationery and contains attachments that are not images. Messages with stationery cannot contain attachments that aren’t images. You can cancel and return to editing the message or remove the stationery in order to send." My choice is to cancel or remove stationary.
    Is there a third party solution? Any suggestion?

    No
    Envoyé depuis Molto pour iPad
    De: pwillener
    Envoyé: jeudi, février 12, 2015 07:14 AM
    À: René Allamelle
    Objet:  how do I compress a large pdf file to fit in an email?
    how do I compress a large pdf file to fit in an email?
    created by pwillener in Adobe Acrobat.com Services - View the full discussion
    But generally it is never a good idea to send e-documents as email attachments.  Better use a file sharing service (Acrobat.com, Dropbox, Google Drive, Microsoft OneDrive, ..), upload the document, then send the shared download link via email.
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7187079#7187079 and clicking ‘Correct’ below the answer
    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:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7187079#7187079
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in Adobe Acrobat.com Services by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • How do i convert an email to a pdf file

    How do I turn an email to a pdf file

    You can't do that with Reader but there are various ways to get it done.
    One way, purchase Acrobat (which creates PDF files).
    Another way, use Google to find a lower cost or free PDF writer and use that.

  • How can I convert an email  in a PDF document?

    iOS
    How can I convert an email  in a PDF document?

    There is no "system solution" that turns an e-mail into a PDF file. In other words, it's not a functionality of the iOS. And there are some apps around that say they turn some documents into PDF files, but in every app that does that, I've never seen one that does so for the entire e-mail itself, but only for the "text" of the e-mail (which won't include the "to" and "from").
    BUT, you can get part of the e-mail through a screen shot and you can get more of the e-mail by going "portrait" style and not "landscape". Then after getting the screen shot, you can turn that into a PDF file by those apps I was referring to up above,

  • I get a weekly email with a PDF attachment and when I open it it's to large to print. To date I'm not able to find a way to shrink or adjust the size. The doc was created on M/S Office-excell

    I get a weekly email with a PDF attachment and when I open it it's to large to print and I know of no way to shrink or resize the doc. It's created in M/S excel. Can anymore assist....TX

    From: Test Screen Name [email protected]
    Sent: Sunday, August 04, 2013 11:32 AM
    To: gunner0490
    Subject: I'm not able to open PDF files in Adobe Reader XI.
    Re: I'm not able to open PDF files in Adobe Reader XI.
    created by Test Screen Name <http://forums.adobe.com/people/TestScreenName>  in Adobe Reader - View the full discussion <http://forums.adobe.com/message/5565198#5565198

Maybe you are looking for