Problem in Sending PDF as Mail

We are currently upgrading from 4.7 to ECC 6 and we have a program which sends a smartform as PDF in Mail.
In the pre upgrade system its working fine and in post upgrade system, we could not able to open the PDF attachment.
It throwing an error saying the file could be damaged or lost. We are using CONVERT_OTF and SO_DOCUMENT_SEND_API1 function module to send the mail.
Anyone has faced a similar kind of issue before?
Any pointers would be great.
THanks,
Arun

Hi,
Use FM CONVERT_OTF_2_PDF
    i_otf = ls_job_info-otfdata.
ls_job_info is a importing parameter obtained from your Smartform Function module.
              CALL FUNCTION 'CONVERT_OTF_2_PDF'
                IMPORTING
                  bin_filesize           = w_bin_filesize
                TABLES
                  otf                    = i_otf
                  doctab_archive         = i_docs
                  lines                  = i_lines
                EXCEPTIONS
                  err_conv_not_possible  = 1
                  err_otf_mc_noendmarker = 2
                  OTHERS                 = 3.

Similar Messages

  • Problem in Sending PDF as mail attachment

    Hello
    I am calling ADOBE form and the PDF data coming from Fucntion module converting using CONVERT_XSTRING_TO_BINARY
    and the binary data I am putting in Contents_hex table parameters of   SO_NEW_DOCUMENT_ATT_SEND_API1
    But while openign the mail attachemnet, its saying error in opening the file, it is damaged  and all.
    So whats actually the problem will be?

    can you enable a verbose trace for ADS and reproduce the issue
    please see #846610
    Run the Visual Administrator for your J2EE engine.
    Server -> services -> Log Configurator.
    Then select 'To Advanced mode' and 'Locations' tab.
    Root Location -> com -> sap -> engine -> services -> webservices -> server -> runtime -> com -> adobe_adobeDocumentServices -> AdobeDocumentServices
    Please change this node to 'ALL', and save the configuration.
    Modify the log severity for the following location also.
    Root Location -> com -> adobe
    Change severity to 'All', press 'Copy severity to subtree' and save configuration.
    All ADS trace will be written in DefaultTrace of server node.
    /usr/sap/<SID>/<Instance>/j2ee/cluster/serverX/log/defaultTrace*.trc
    After finishing the test, don't forget to change the log level back to 'default'.

  • 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

  • Problem in sending PDF as attachment in E-Mail

    Hi All,
    I have developed a program to convert the spool request as PDF file and sending it to an E-Mail address.
    But when i'm opening the file,  I'm getting an error in Adobe Reader.
    I'm attaching the code here.
    Please give me the suggestions along with example Program.
    Sorry, I could not attach the program here.
    Thanks and regards,
    Jagan Mohan.

    DATA:ig_otf TYPE itcoo OCCURS 0 WITH HEADER LINE,
         ig_pdf_tab LIKE tline OCCURS 0 WITH HEADER LINE.
    DATA : ig_pdf1 TYPE TABLE OF solisti1.
    DATA: g_tab_lines LIKE sy-tabix.
    DATA: ig_objpack LIKE sopcklsti1 OCCURS 2  WITH HEADER LINE,
          ig_objhead LIKE solisti1   OCCURS 1  WITH HEADER LINE,
          ig_objbin LIKE solisti1   OCCURS 10 WITH HEADER LINE,
          ig_reclist LIKE somlreci1  OCCURS 5  WITH HEADER LINE,
          ig_objtxt LIKE solisti1   OCCURS 10 WITH HEADER LINE.
    DATA: wg_doc_chng LIKE sodocchgi1.
    PERFORM convert_pdf.
    PERFORM sendmail.
    FORM convert_pdf .
      REFRESH : ig_otf , ig_pdf_tab.
      ig_otf[] = wg_otf_from_fm-otfdata[].
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          format                = 'PDF'
          max_linewidth         = 132
        IMPORTING
          bin_filesize          = wg_bin_fsize
        TABLES
          otf                   = ig_otf
          lines                 = ig_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.
    ENDFORM.                    " convert_pdf
    FORM sendmail .
      REFRESH : ig_pdf1.
      CALL FUNCTION 'SX_TABLE_LINE_WIDTH_CHANGE'
        EXPORTING
          line_width_dst              = '255'
        TABLES
          content_in                  = ig_pdf_tab[]
          content_out                 = ig_pdf1[]
        EXCEPTIONS
          err_line_width_src_too_long = 1
          err_line_width_dst_too_long = 2
          err_conv_failed             = 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.
      MOVE : 'U'   TO ig_reclist-rec_type,
             '.....'   TO ig_reclist-receiver, " move email id here
             'X'    TO ig_reclist-express,
             'INT' TO ig_reclist-com_type.
      APPEND ig_reclist.
      REFRESH ig_objtxt.
      CONCATENATE 'Payslip of employee -' wg_vbak-vbeln INTO ig_objtxt SEPARATED BY ' '.
      APPEND ig_objtxt.
    Creating the document to be sent
      wg_doc_chng-obj_descr = 'Pay Slip'.
      wg_doc_chng-obj_name  = 'PAYSLIP'.
      wg_doc_chng-obj_langu = sy-langu.
    Get length of objtxt.
      DESCRIBE TABLE ig_objtxt LINES g_tab_lines.
      READ TABLE ig_objtxt INDEX g_tab_lines.
      wg_doc_chng-doc_size = ( g_tab_lines - 1 ) * 255 + STRLEN( ig_objtxt ).
    Creating the entry for the compressed document
      CLEAR ig_objpack-transf_bin.
      ig_objpack-head_start = 1.
      ig_objpack-head_num   = 0.
      ig_objpack-body_start = 1.
      ig_objpack-body_num   = g_tab_lines.
      ig_objpack-doc_type   = 'RAW'.
      APPEND ig_objpack.
      DESCRIBE TABLE ig_pdf1 LINES g_tab_lines.
      g_tab_lines = g_tab_lines + 1.
      ig_objhead-line = 'PAYSLIP'.
      APPEND ig_objhead.
    Creating the entry for the compressed attachment
      ig_objpack-transf_bin = 'X'.
      ig_objpack-head_start = 1.
      ig_objpack-head_num   = 1.
      ig_objpack-body_start = 1.
      ig_objpack-body_num   = g_tab_lines.
      ig_objpack-doc_type   = 'PDF'.
      ig_objpack-obj_name   = 'PAYSLIP'.
      ig_objpack-obj_descr  = 'Pay Slip'.
      ig_objpack-doc_size   = g_tab_lines * 255.
      APPEND ig_objpack.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
        EXPORTING
          document_data                    = wg_doc_chng
         put_in_outbox                    = 'X'
          commit_work                      = 'X'
        TABLES
          packing_list                     = ig_objpack
          object_header                    = ig_objhead
          contents_bin                     = ig_pdf1
          contents_txt                     = ig_objtxt
          receivers                        = ig_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.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.

  • Problem in sending pdf attachment

    hi all
    i am facing a problem when i am sending a pdf attachment in mail... It is showing an errror that the file is not decode properly as it is an email attachment. The below code works fine for other file types. please help me

    FUNCTION ZMAIL_READ.
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(SUBJECT) TYPE  SO_OBJ_DES
    *"     VALUE(TEXT) TYPE  STRING
    *"     VALUE(SENDER) TYPE  ADR6-SMTP_ADDR
    *"     VALUE(RECEIVER) TYPE  ADR6-SMTP_ADDR
    *"     VALUE(ATTACHMENTS) TYPE  Z_T_XATTACH OPTIONAL
    *"  EXPORTING
    *"     VALUE(MESSAGE) TYPE  STRING
    DATA: lo_sender TYPE REF TO if_sender_bcs VALUE IS INITIAL,
          lo_bcs_send_request TYPE REF TO cl_bcs,
          l_send type ADR6-SMTP_ADDR ,
          l_rec type  ADR6-SMTP_ADDR .
    data: it_text type table of soli,
          wa_text type soli.
    DATA: lo_send_request TYPE REF TO cl_bcs VALUE IS INITIAL.
    DATA: lo_recipient TYPE REF TO if_recipient_bcs VALUE IS INITIAL.
    DATA: lv_recipient_uid TYPE uname,
          lv_recipient_mail TYPE adr6-smtp_addr.
    data: lo_message type ref to cx_send_req_bcs value is initial,
          text_val type string.
    data: it_userlist type table of BAPIUSNAME,
          wa_userlist type BAPIUSNAME.
    data: it_selection_range type table of BAPIUSSRGE,
          wa_selection_range type BAPIUSSRGE.
    data: wa_attachment TYPE zxattach,
          attachment_sub type SO_OBJ_DES.
    DATA: xstr type xstring,
          str TYPE string,
          str1 type string,
          it_str2 type table of soli,
          wa_STR2 TYPE SOLI,
    DATA: LOC_CONV TYPE REF TO CL_ABAP_CONV_IN_CE,
          wa_soli type soli,
          it_soli type table of soli,
          it1_solix type solix_tab.
    data result TYPE boolean.
    data: i_ext(10) type c,
          i_type type soodk-objtp.
    wa_text-line = text.
    append wa_text to it_text.
    CLASS cl_bcs DEFINITION LOAD.
    try.
    lo_send_request = cl_bcs=>create_persistent( ).
    catch cx_send_req_bcs.
    endtry.
    * Message body and subject
    data: lo_document TYPE REF TO cl_document_bcs VALUE IS INITIAL.
    try.
    lo_document = cl_document_bcs=>create_document(
         i_type = 'RAW'
         i_text =  it_text
         i_subject = subject ).
    catch cx_send_req_bcs.
    catch cx_document_bcs.
    catch cx_address_bcs.
    endtry.
    loop at attachments into wa_attachment.
    attachment_sub = wa_attachment-file_name.
    it_str2 = wa_attachment-attach.
    loop at it_str2 into wa_str2.
    str1 = wa_str2-line.
    try.
    CALL FUNCTION 'SSFC_BASE64_DECODE'
      EXPORTING
        B64DATA                        = str1
    *   B64LENG                        =
    *   B_CHECK                        =
      IMPORTING
        BINDATA                        = xstr.
    catch cx_sy_dyn_call_illegal_type.
    endtry.
    try.
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
      EXPORTING
        BUFFER                = xstr
       APPEND_TO_TABLE       = 'X'
    * IMPORTING
    *   OUTPUT_LENGTH         =
      TABLES
        BINARY_TAB            = it1_solix
    catch cx_sy_dyn_call_illegal_type.
    endtry.
    endloop.
    try.
    CALL FUNCTION 'SA_KW_RFC_FILENAME_EXT_GET'
      EXPORTING
       AREA            = 'IWBSOLAR'
        MIMETYPE        = wa_attachment-type
    IMPORTING
       EXTENSION       = i_ext
    catch cx_sy_dyn_call_illegal_type.
    endtry.
    i_type = i_ext.
    try.
      lo_document->add_attachment(
      EXPORTING
        i_attachment_type = i_type
        i_attachment_subject = attachment_sub
        i_att_content_hex = it1_solix ).
           CATCH cx_document_bcs.
    endtry.
    endloop.
    try.
    lo_send_request->set_document( lo_document ).
    CATCH cx_send_req_bcs.
    endtry.
    wa_selection_range-PARAMETER = 'address'.
    wa_selection_range-field = 'e_mail'.
    wa_selection_range-sign = 'I'.
    wa_selection_range-option = 'EQ'.
    wa_selection_range-low = receiver.
    append wa_selection_range to it_selection_range.
    try.
    CALL FUNCTION 'BAPI_USER_GETLIST'
    * EXPORTING
    *   MAX_ROWS              = 0
    *   WITH_USERNAME         = ' '
    * IMPORTING
    *   ROWS                  =
    TABLES
        SELECTION_RANGE       = it_selection_range
        USERLIST              = it_userlist.
    catch cx_sy_dyn_call_illegal_type.
    endtry.
    read table it_userlist into wa_userlist index 1.
    try.
      lo_sender = cl_cam_address_bcs=>create_internet_address( sender ).
      lo_send_request->set_sender(
         EXPORTING
         i_sender = lo_sender ).
    catch cx_send_req_bcs.
    catch cx_document_bcs.
    catch cx_address_bcs.
      return.
    endtry.
    try.
        lo_recipient = cl_sapuser_bcs=>create( wa_userlist-USERNAME ).
        lo_send_request->add_recipient(
           EXPORTING
             i_recipient = lo_recipient ).
    *         i_express = 'X' ).
      catch cx_send_req_bcs.
      catch cx_document_bcs.
      catch cx_address_bcs.
    endtry.
    try.
    ** Send email
         LO_SEND_REQUEST->SET_SEND_IMMEDIATELY( 'X' ).
         lo_send_request->send( EXPORTING
         i_with_error_screen = ' '
         RECEIVING
         result = result ).
         COMMIT WORK.
    CATCH CX_DOCUMENT_BCS.
    CATCH CX_SEND_REQ_BCS INTO lo_message.
    CATCH CX_ADDRESS_BCS.
    text_val = lo_message->IF_MESSAGE~GET_TEXT( ).
    endtry.
    if result = 'X'.
      message = 'E-Mail sent'.
    else.
      message = 'E-Mail not sent'.
    endif.
    ENDFUNCTION.

  • Problems with sending PDF from iPad to PC?

    I am having problems sending a PDF from an iPad. The email is sent and can be read on any Apple device, however it is not viewable on a PC. To complicate things more, the first sending of the email to the PC in not viewable, once it is forwarded to another, the email is viewable just as on an Apple device. I have had this problem with to different apps which led me to belive Mail was suspect. I removed the mailbox and re-installed it with no fix. I think my next move is to reset the iPad. Has anyone had the same problem and come up with a solution?

    I've had exactly the same issue
    I had (mistakenly) believe the issue had been resolved its new app updates but it hasn't
    Today I emailed a signed document using SignNow app. Mindful of previous iPad PDF compatibility issues, I sent myself a copy to my gmail account that I have on my MacBook
    Everything appeared to be fine so I then emailed it to the recipient (using a PC) who promptly emailed back to say they hadn't received anything!
    This is the second time within two weeks.
    Eventually I had to email it to my Mac email account, open in Adobe then 'save as' PDF the. Email it back to my iPad email account so I could then forward onto the recipient.
    I had originally believed this to be an app issue but having used SignNow as well as TypeOn now realise it's something peculiar about Mac/PC formatting.
    SORT IT OUT APPLE!

  • Problem when sending report to mail ID's in BIP

    Dear All,
    We are using BIP 10.1.3.3.1.
    I generated some reports .
    I configured SMTP server and i can aable to send my reports to users ID's
    also.
    But i have to send my reports to 10 users(one ID is having 30 characters
    length).
    while i am giving the ID's in
    TO: (it is taking up to 80 characters ie 2 ID's and 20 chars)
    For that what i have to do?
    My plans are
    1)Grouping the 10 ID's
    But there no permition for grouping in my company.
    Then i left it.
    2)Tring to increase the length of that 80 chars to >300.
    for that i checked the tables which are created while installing the
    schedular schema.
    i found the table names as follows
    Qrtz_blob_trigger
    Qrtz_calender
    Qrtz_cron_trigger
    Qrtz_fired_trigger
    Qrtz_job_trigger
    Qrtz_scheduler_state
    Qrtz_simple_trigger
    Qrtz_locks
    Qrtz_paused_trigger_grps
    Qrtz_trigger
    Qrtz_ trigger_listener
    MY doubt is
    1)that length inf is in which table
    2)which field name
    3)if i change that length is there any impact on other tables
    It is veryyyyy Argent.
    Plz any body help me .
    Regards
    Subbu..

    Hi,
    If you are using 6i,
    Run the report in "batch" mode. This will not bring up the send mail dialog.
    For multiple email id's, you can give destype=mail desname=[email protected],[email protected],..etc. or use distribution.
    In 9i, the standard SMPT protocol is used. Hence you will not get this problem.
    You can see example "Bursting and Distributing"
    http://otn.oracle.com/docs/products/reports/htdocs/doc_library/getstart/examples/Distribution/index.html
    Thanks,
    Siva B

  • How to find out a problem of sending an e-mail from a deployed application?

    Hi guys,
    I've deployed a web application which is in production mode on a weblogic server 10.3.2.0. The HTTP server is Apache.
    In this web application, we send e-mails using javamail library. The mail server is a remote server from this one, also an Apache one.
    At the beginning, all was working fine. Now it's impossible to receive e-mail but i've no exception launched, no trace of problem....
    I've tested the mail server with the same application in dev mode hosted on another server. It's OK, e-mails are received correctly.
    It seems the problem comes from the server which hosts the production web application.
    The problem is that i don't know how to test it to find out what is wrong. Is it possible to see what happen in the console portal of the weblogic server and how ?
    Any idea, please it's urgent !!!

    Hi Nick.
    If you open a free Apple Developer account you can use the bug reporter tool. However if you want to file a bug report you need to tightly identify a reproducible fault, detail the conditions in which it arises and ideally supply any workaround you have discovered.
    In other circumstances iTunes Feedback is probably the appropriate channel. Common problems should gain attention.
    Apple don't provide free technical support for iTunes. The inital point of entry for online assistance is iTunes Support. If none of the online resources help then depending on the nature of the problem, or whether you qualify through a recent purchase, or you are prepared to pay, you may be able to make use of the Contact iTunes Support service. Failing that Apple Support Communities (here) is where users share solutions with each other.
    tt2

  • Sending PDF by mail but PDF is not opening because of PDF Size.

    Hi all,
    I am sending a sapscript in PDF format through Email.
    Sapcript is going fine in PDF file for a test case in which file size is small but for PDF files where file size is Big in the mail while opening the file PDF is giving an Error message  that.
    'There was an error opening this document. The file is damaged and could not be repaired'
    Thanks in advance

    Hi Sonal,
    How are you calling the script and converting it to pdf ?
    Can you send me the code where you are calling script and converting to pdf ?
    KR Jaideep,

  • Problem while sending spool as mail in Excel

    Hello,
               My requirement is to send the spool generated in background as attachment in excel. i am using RSPO_RETURN_SPOOLJOB for converting spool in to internal table and SO_NEW_DOCUMENT_ATT_SEND_API1 for sending mail.
    The problem is data is not displayed properly. How to handle the data retreived from  RSPO_RETURN_SPOOLJOB .
    Thanks.

    Hello Sandra,
                   This is how my data is been displayed in excel
    4100000001|1000|1000|304|04/05/1999|00010|ACETAMIDE                               |3000081 |1000|     6,000 |KG |KG |    58.00| 4100000002|1000|1000|304|04/05/1999|00010|AMMONIA GAS                             |3000084 |1000|    12,000 |KG |KG |    17.20| 4100000003|1000|1000|304|04/05/1999|00010|LIQUID NITROGEN                         |3000216 |1000|   140,000 |L  |L  |     5.05| 4100000004|1000|1000|304|04/05/1999|00010|HYDROGEN PEROXIDE 50 %                  |3000203 |1000|    10,000 |KG |KG |    10.05|
    This is coming in single cell of the excel.

  • TS3899 Problems with sending to aol mail account

    Hi I have just upgraded to an iPad air. I have an aol email account. The account receives email fine but can't send it. I get an error message that it can't deliver to server. I've tried deleting and reading without success. I think its a problem with the revert port number - the default is 465. I think it should be 587 but it won't let me change it. Any suggestion?

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    Setting up and troubleshooting Mail
    http://www.apple.com/support/ipad/assistant/mail/http://www.apple.com/support/ipad/assistant/mail/
    Using a POP account with multiple devices
    http://support.apple.com/kb/ht3228http://support.apple.com/kb/ht3228
    iOS: Adding an email account
    http://support.apple.com/kb/HT4810http://support.apple.com/kb/HT4810
    iOS: Setting up an Outlook.com, Hotmail, Live, or MSN email account
    http://support.apple.com/kb/ht1694http://support.apple.com/kb/ht1694
    iPhone, iPad, iPod touch: Microsoft Outlook 2003, Outlook 2007, Outlook 2010 may not display contacts and calendars after sync
    http://support.apple.com/kb/TS1944http://support.apple.com/kb/TS1944
    Server does not allow relaying email error, fix
    http://appletoolbox.com/2012/01/server-does-not-allow-relaying-email-error-fix/http://appletoolbox.com/2012/01/server-does-not-allow-relaying-email-error-fix/
    Why Does My iPad Say "Cannot Connect to Server"?
    http://www.ehow.co.uk/info_8693415_ipad-say-cannot-connect-server.htmlhttp://www.ehow.co.uk/info_8693415_ipad-say-cannot-connect-server.html
    How to Sync Contacts with Your iPad Using iTunes
    http://www.dummies.com/how-to/content/how-to-sync-contacts-with-your-ipad-using- itunes.htmlhttp://www.dummies.com/how-to/content/how-to-sync-contacts-with-your-ipad-using- itunes.html
    iOS: 'Mailbox Locked', account is in use on another device, or prompt to re-enter POP3 password
    http://support.apple.com/kb/ts2621http://support.apple.com/kb/ts2621
    eMail Groups - You can use a third party app that many users recommend.
    MailShot -  https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
    Group Email  -  https://itunes.apple.com/us/app/group-email!-mail-client-attachments/id380690305https://itunes.apple.com/us/app/group-email!-mail-client-attachments/id380690305 ?mt=8
    iPad Mail
    http://www.apple.com/support/ipad/mail/http://www.apple.com/support/ipad/mail/
    Configuration problems with IMAP e-mail on iOS with a non-standard SSL port.
    http://colinrobbins.me/2013/02/09/configuration-problems-with-imap-e-mail-on-ios -with-a-non-standard-ssl-port/http://colinrobbins.me/2013/02/09/configuration-problems-with-imap-e-mail-on-ios -with-a-non-standard-ssl-port/
    Try this first - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    Or this - Delete the account in Mail and then set it up again. Settings->Mail, Contacts, Calendars -> Accounts   Tap on the Account, then on the red button that says Remove Account.
     Cheers, Tom

  • Send PDF As Mail Attachment

    A user fills out a form, on the action page the values are
    inserted into a database. Now I want to send a pdf of the values
    that was just submitted as a mail attachment to someone everytime
    someone fills out the form, automated of course. I just do not know
    how to proceed with creating the mail attachment.
    Anyone??

    I will try this tonight,
    thanks
    anthony

  • Problems with sending PDF form

    I am unable to send my PDF form through Microsoft Outlook mail. The error message states there I have the wrong Server name?

    How exactly are you sending that document?
    What do you have set in Adobe Reader | Edit | Preferences | Email accounts ?

  • Problem to send photos par mail

    until yesterday I was able to send photos par email from my iPhone. all of a sudden it doesn't work anymore. I still can send regular emails but I'm not able to send a photo (just from the camera roll). any ideas why?
    thanks everyone
    (iPhone 4, 16GB, storage capacity 13.5GB, Version: 7.1.2)

    Hello dianafromerfurt,
    Thanks for the question. After reviewing your post, it sounds like you are not able to send emails with photos attached. I would recommend that you read this article, it may be able to help the issue.
    Get help with Mail on iPhone, iPad, and iPod touch - Apple Support
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • Send PDF via Mail-Adapter

    Which tags you are talking about? Is your pdf is the payload or an attachment? May be you can look at swapping of payload if you can send the PDF as an attachment.
    VJ

    Hi Mario,
    Have a look at the blog by michal
    http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=%28J2EE3417100%29ID0975923150DB01234155231841994144End?blog=/pub/wlg/2849
    If you have the pdf in your payload you can make it as an attachment using PAyloadSwap bean. Just give a try
    Regards
    Suraj

Maybe you are looking for

  • Can't cue more than one doc at a time

    I'm not sure if this is a HP 1200 issue (perhaps driver issue) or Apple Printer Setup Utility issue, but if I have a couple documents to print, I can only cue one at a time. If I try to print a 2nd doc while the 1st is printing, the 2nd simply doesn'

  • Sort and filter option missing in table view

    Hi, I am not able to see the sort and filter option for all the columns in table view. Could anyone please help me if i need to add something to see that option. Thanks, Kamesh Bathla

  • Mail will not send from anywhere except home

    I am using mail with an external mail server. I have two accounts on the same server. For some reason when I send from my primary account at my house it works fine. If I am anywhere else it will not send email. The secondary account does not have thi

  • Vendor query list

    Hi guys: Could anybody help me on this issue? Is there any tcode or table i can use to list inactive vendor in one period, like from August 2007 to August 2008? Which means i want to highlight vendors who does not have any transactions from August 20

  • Difference between regular expressions and spry character masking?

    Hi, This is my first time writing my own regular expressions.  Often times though, they seem to work in various testing widgets, but then they do not perform as expected in Spry.  I have no idea how to even begin to debug this. For example, this stri