E72:Problems after trying to send 2 MB attachment ...

Hello,
I was trying to send 2 pictures(total size abt 2MB) as an email attachment using my IMAP mailbox and mail reached outbox, but it never sent out. Since this attempt my mailbox behaves wierdly and does not sync emails properly. So I removed the mailbox and I set it up again. Still there are few issues with sync but atleast emails are coming & going.
Also I tried again to send a very small size file as an attachment but in the compose email screen when I do attach the file, nothing happens and it automatically comes out of the mailbox. The email is saved in drafts folder with no attachment . can someone confirm if attachments are support by E72 email client ?
I am on 031.023 FW and I have set up email using 'Other' option in the Set Email wizard.
Appreciate any inputs
Thanks
Venks

My experience with the E72 that it's not an e-mail wonder.
Sending mail can be very slow.

Similar Messages

  • Mail is In an Infinite loop. after trying to send photo attachment

    Mail has been working fine until my wife tried to send 3 MB of photos as an attachment. Now the Mail is in an infinite loop. The error message is: " Some actions taken while the account “.Mac Account” was offline could not be completed online.
    Mail has undone actions on some messages so that you can redo the actions while online. Mail has saved other messages in mailbox “On My Mac” in “On My Mac” so that you can complete the actions while online.
    Additional information: The connection to the server “mail.mac.com” on port 993 timed out. " I have deleted all the mail library files I can find and restored using Time machine. The "On My Mac" mailbox keeps reappearing from the dead ! NO help. What is causing this ? Hoe do I fix it I have 2 Mail providers, Apple and Earthlink.

    Well I'm having the same problem after also trying to send an email with photos as attachments.
    The email keeps getting put into my draft mailbox "On My Mac". I've tried removing the attachments and then deleting the email,I've tried deleting the mailbox, I've been to the server and deleting the email I found there, but as you say, everytime, it comes back from the dead. I've gone to my mail preferences and changed the port and nothing seems to work. What is strange, is that everytime I click on the OK button on the error message, it starts again and puts another copy of the message into the draft mailbox, so I end up with multiple copies of the same email, complete with attachments.
    I've tried turning airport off while I do this, and then turning it back on after deleting, but it hasn't helped.
    I'm baffled as to what to try next.

  • Mail crashes when trying to send an attachament

    Since using Snow Leopard I have had endless trouble with Mail quitting just after trying to send an email with an attachment. In the end most of them go after several attempts but with the last one (only 450K) I had to resort to using Entourage and even that crashed twice before sending the attachment. I have upgraded to 10.6.1 but that makes no difference.
    I have no idea what the problem can be but Leopard used to work fine. What on earth have Apple done to screw it up and how can it be corrected.

    That's fine, but every time it crashes it automatically sends a report to Apple. Must have posted about eight so far. The point is, how long do I have to wait before a solution arrives and what am I supposed to do in the meantime. You pay good money to upgrade and find that you have gone backwards in some respects. It wouldn't be so bad if you could uninstall the upgrade easily but that could put me into greater trouble.

  • Error when trying to send an attachment

    Hi there,
    I am running an application in Tomcat 5.5 and I am trying to send an email with an attachment via java mail. The attachment will eventually be a zip file containing wav files but I can't seem to get it to work with a text file yet.
    I may be a little confused...I am especially confused with the DataHandlerSet stuff.
    Here is the code:
    public String sendmail(String msgSubject)
         //Sets some variables.
        String emailmultipart = "true"; //if this is set to false sends a simple message.
        String msgText = "Some text \n\n";
        String smtphost = "myhost";
        String emailto = "[email protected]";
        String emailfrom =  "[email protected]";
        //Gives the path of where the sound files are.
        File soundfile = new File("myfile.txt");
        boolean debug = true; // change to get more information
        String msgText2 = "multipart message";
        boolean sendmultipart = Boolean.valueOf(emailmultipart).booleanValue();
           // set the host
        Properties props = new Properties();
        props.put("mail.smtp.host", smtphost);
          // create some properties and get the default Session
        Session session = Session.getDefaultInstance(props, null);
        session.setDebug(debug);
        try
              // create a message
               Message msg = new MimeMessage(session);
               // set the from address
               InternetAddress from = new InternetAddress(emailfrom);
               msg.setFrom(from);
               //set the to address
               InternetAddress[] address =
                   new InternetAddress(emailto)
               msg.setRecipients(Message.RecipientType.TO, address);
               //set subject - support request id
               msg.setSubject(msgSubject);
              //decides whether to send plain text message or multi text message (from true/false in the command line)
              //sends a simple plain text email
              if(!sendmultipart)
                 // send a plain text message
                 msg.setContent(soundfile, "text/plain");
              //sends an attached file.
              else
                 // send a multipart message// create and fill the first message part
                 MimeBodyPart mbp1 = new MimeBodyPart();
                 //adds the text as normal
                 mbp1.setContent(msgText, "text/plain");
                 // create and fill the second message part
                MimeBodyPart mbp3 = new MimeBodyPart();
                // attach the file to the message
                  //FileDataSource fds = new FileDataSource(filen);
                  FileDataSource fds = new FileDataSource(soundfile);
                 mbp3.setDataHandler(new DataHandler(fds));
                 mbp3.setFileName(fds.getName());
    //             mbp3.setContent();
                Multipart mp = new MimeMultipart();
                //adds the text to the message
                mp.addBodyPart(mbp1);
                  //adds the attachment to the message
                  mp.addBodyPart(mbp3);
                // adds the content to the message
                msg.setContent(mp);
             //Transport - sends the message.
             Transport.send(msg);
        catch(MessagingException mex)
          mex.printStackTrace();
        //log.debug("At end of Send email");
        return "nothing";
    }Here is the error:
    javax.mail.MessagingException: IOException while sending message;
    nested exception is:
         java.io.IOException: "text/html" DataContentHandler requires String object, was given object of type class javax.mail.internet.MimeMultipart
         at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:566)
         at javax.mail.Transport.send0(Transport.java:151)
         at javax.mail.Transport.send(Transport.java:80)
         at questionnaireweb.Formemail.sendmail(Formemail.java:337)
         at org.apache.jsp.web.emailrecorded_jsp._jspService(org.apache.jsp.web.emailrecorded_jsp:338)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:99)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:325)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:245)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:825)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:731)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:526)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         at java.lang.Thread.run(Thread.java:595)
    I'd be really grateful for any help. I can't seem to get past this error not matter what I try. Sending the simple mail works, but sending an attachment produces the error above. I have seen similar errors before but when the user actually wants to send html and not a file.
    Thanks a lot,
    Jess

    HI ,Thanks for your response. That was an error in the code I posted, but wasn't the error I was trying to solve. Once correcting that error you pointed out I am getting the problems not when I send a plain text email like:
              if(!sendmultipart)
                 // send a plain text message
                 msg.setContent(msgText, "text/plain");
              }but when I try and send multipart messages doing this:
              else
                 // send a multipart message// create and fill the first message part
                       MimeBodyPart mbp1 = new MimeBodyPart();
         mbp1.setText(msgText);
          // create and fill the second message part
         MimeBodyPart mbp3 = new MimeBodyPart();
         // attach the file to the message
         FileDataSource fds = new FileDataSource(soundfile);
         mbp3.setDataHandler(new DataHandler(fds));
         mbp3.setFileName(fds.getName());
                       Multipart mp = new MimeMultipart();
         //adds the text to the message
          mp.addBodyPart(mbp1);
          //adds the attachment to the message
          mp.addBodyPart(mbp3);
           // adds the content to the message
          msg.setContent(mp);
         }So i get the error when executing the else branch.
    Can you spot any errors here? I get the same error as mentioned earlier.
    Thanks a lot,
    Jess

  • Mail not working after trying to send a very large file - how to "unclog?"

    Yesterday, I tried to send a file with Gmail via Mail and it was evidently too big. I have deleted it and it no longer appears in the Outbox, but Gmail doesn't work on my Mail anymore. It's constantly trying to sync with Gmail, unsuccessfully. It's slowing down my computer and I don't receive Gmails. If I try to mail with Gmail through Mail, it takes an extraordinarily long time and 99% of the time doesn't go through.
    My Yahoo account is working fine. I can also access Gmail online (but I hate it!) -- so the problem is somewhere between Mail and Gmail.
    What to do?
    Thanks!

    I have the same problem and have tried stopping everything in the Activity window but when I click 'Get Mail' or quit and re-open Mail, the problem recurs so I have no mail after 1930 on Thursday despite there being new messages in my inbox.
    There are 5 Activities shown; all of which show the barber's striped bar although it doesn't move.
    Opening Mailbox
    Performing pending operations - copying message
    [Gmail] Communicating with server - Adding Messages
    Fetching new mail
    Synchronizing with server - Traversing mailbox hierarchy
    It is working on my Macbook (10.6.4); just not on the iMac (10.6.5) so definitely not something router-related and the iMac wasn't working on 10.6.4 either so not convinced that has anything to do with it.

  • Mail not working after trying to send videos. Spins trying to bring in new mail until I force quit.

    Yesterday I inserted some videos in an email. Wouldn't send: too big. I removed one at a time. Same message. No choice to delete the email, so I clicked try later. Evidently it tried 33 times, because there were 33 copies of it in "recovered files." I deleted those, but Mail still won't work. I have to force quit to close Mail. Turned off computer. Back on, it keeps doing the same thing. The gear spins next to the inbox, and it won't stop. Brings in no new mail.
    Mail works on my iPhone, so I think I it must be corrupted on this iMac (10.6.8).  what can I do?
    Thanks for any help!
    Ginny

    More info on this, still from me!  The emails in the recovered messages folder that I deleted are STILL there! The same 33 copies of the email with videos pasted in. How can I get rid of them? I'm pretty sure that they are the problem...the program is still trying to send them or something!
    Please, someone...help!
    Ginny

  • E-mail locked-up after trying to send a large video file.

    I've restarted several times and e-mail is still locked. It still wants to send the file. There are three e-mail addresses aol, gmail and me.  I sent from aol first and got a message to try another due to file size.  I thought it would let me know if the file was too big tp send but it locked up and wouldn't let me do anything even after a forced quit.

    Assuming that it's not still trying to send the video, then you could do a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Trying to send an attachment without it being embedded

    I'm currently trying to send an email to a windows user and I want to send a documnent not as an embedded attachment within the email but as a click and open attachment. Is this possible with mail and the macbook air?

    A couple of options are:
    *  Zip the file in question, then attach it.  (Zip via control-click and then "Compress...").
    * Use Attachment Tamer
    charlie

  • I just set up ePrint and tried to send an attachment in an email it doesn't print attachment

    I just set up my ePrint and tried to send an email attachment to my printer email address and it only prints the email page not the attachment.

    Hi mamacathie!
    What type of attachment is it that you are trying to send? Also what is the size of the file?
    This will help us get a better idea as to why your attachment is not printing.
    M. Moss
    Click on the BLUE KUDOS button on the left to say "Thanks"
    If my reply solves your issue, please mark it as solved to help fellow users fix their similar issues!
    Though I am an HP Employee, ALL of my posts express MY opinion, and not of HP, whatsoever.

  • All text messages deleted after trying to send a picture message

    I was trying to send a picture message from my camera roll when the screen went black with the Apple logo. My iPhone reset and then the lock screen appeared. I opened my text message app and all my messages were gone. Is there a way to recover my messages? They are very important and I need them. I have the latest firmware and I backed up my iPhone a few days ago

    Has anyone experienced this situation with their text messages?

  • After installing lion I get"Attachment Id has bad format" when trying to send an attachment in Hotmail.  Any ideas

    After installing the new lion, I can no longer send attachments in my hotmail account, I get "attachment Id has bad format". Any ideas?

    THANK YOU !!! THANK YOU !!!
    I took the time to actually set up and sign in to be able to say thankyou for the info - my Apple techs up hear in the North had NO clue on how to solve my problem - sending attatchments is my business and I was out of it since Oct. 14th
    THANK YOU AGAIN - IT WORKED PERFECTLY JUST HOW YOU SAID

  • Problem when trying to send a mail with pdf file attached

    When I use this features from Adobe reader, a new mail is opened with pdf file but my Outlook signature is not set automatically. Note that all is right configure in Outlook 2007 for the signature option...
    Do you have a solution for this problem ?

    someone else reported this (unless it was you) You'll have to insert your sig manually.

  • After trying to send a 15,000 character text my app froze and it crashes every time. I hard closed it, restarted my phone, but still nothing. Please help. I have an iPhone 4S running iOS 6.

    My messaging app is frozen and I can't text after I tried to spam my friend with a 15,000 character text. I hard closed the app and restarted my phone but still nothing. Please help.

    I had the VERY same problem with a iPhone 6 Plus running iOS 8.0.2. I did a hard reset and a full restore to factory settings and then a restore from a back up- nothing worked. I then read Cal4one's post on turning off the read text function (which I had just turned on days before to try out) and ta-da! all is well! I can now use Messages and when I go to attach a picture, the Photo library comes up quickly (it was not before the chance) and the Message app no longer crashes. Just to be safe, I turned off all reading functions in the Accessibility (settings/general/accessibility/speech) settings.

  • Problems when trying to send a smartform through fax

    Hi,
    Im currently confronting a problem when sending smartforms through fax to multiple recipients.
    This is the scenario Im working on:
    The client needs to be able to send a document, could be a PO or invoices, to diferent recipients at the same time. So far in case of purchase orders, we have been able to find the respective faxes and emails for each of the partner functions.
    Functionality for email is working as desired but when sending faxes I have problems.
    Reviewing the output through SOST I get all my receipients which are email and faxes. Emails are fine since it creates a PDF attachment with the order and all of its details.
    For fax I get the same even though the paramenters are set for fax.
    Here is my code if you could please help me here on this one.
    SELECT lifn2 FROM EkPA into l_ekpa-lifn2
                 WHERE EBELN = a_EBELN.
        APPEND l_EKPA.
      ENDSELECT.
      SELECT adrnr
        FROM lfa1
        INTO itab-q_adrnr
        FOR ALL ENTRIES IN l_ekpa WHERE lifnr = l_ekpa-lifn2.
        APPEND itab.
      ENDSELECT.
    *& End of partner address
    *& Selection of Address or Fax number from ADR3 & ADR6 according to ADRNR
    *& Nato
      IF sy-subrc EQ 0.
        loop at itab.
          SELECT SINGLE smtp_addr INTO (itab-q_mail)
       from adr6 where addrnumber = itab-q_adrnr and flg_nouse eq space.
          IF itab-q_mail ne Space.
            Move 'U' to itab-q_typ2(1).
            Move 'X' to itab-q_express(1).
          Move 'EXT' to itab-XOBJT.
          ENdIF.
       SELECT SINGLE FAXNR_LONG INTO (itab-q_fax)
          SELECT SINGLE country FAX_NUMBER INTO (itab-q_cty, itab-q_fax )
       from adr3 where addrnumber = itab-q_adrnr and flg_nouse eq space.
          If itab-q_fax ne space.
            Move 'F' to itab-q_typ(1).
            Move 'TELEFAX' to itab-q_com.
          Endif.
          Modify itab.
        endloop.
    *&  END of ITAB
        CLEAR : DOC_CHNG.
        REFRESH LINES.
        IF NAST-NACHA eq '7'.
    * Fill both the fax & email Receiver lists
          clear:   reclist, reclist2.
          refresh: reclist, reclist2.
    *& loop table itab to update receipient list in table Reclist
    *& Nato
          loop at itab.
            IF not itab-q_typ is initial.
             concatenate itab-q_cty itab-q_fax into reclist2-RECNAM separated by space. "FAX NUMBER
              move itab-q_fax to reclist2-receiver. "FAX NUMBER
    *&>>>>>>>>>>>>>>>>>>>new entry for testing nato 080206<<<<<<<<<<<&
              move itab-q_cty to RECLIST2-COUNTRY.        "Country Code
              move itab-q_fax to Reclist2-FAX.            "Fax number
    *&>>>>>>>>>>>>>>ENd of entry<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<&
              move itab-q_typ to REClist2-REC_TYPE.  "Communication type for fax
          move itab-q_EXPRESS to Express.        "comment for testing
              move itab-q_com to REClist2-COM_TYPE.
              Move 'X' to reclist2-NOTIF_DEL.
             Move 'TELEFAX' to reclist2-SNDART.    "TYPE OF DEVICE
              Move a_ebeln to sood-OBJDES.              "new addition for testing nato
              append Reclist2.
            endif.
            IF not itab-q_typ2 is initial.
              move itab-q_mail to REclist-receiver.  "SMT ADDRESS
              move itab-q_typ2 to REClist-REC_TYPE.
              move itab-q_EXPRESS to REClist-express.
              move 'X' to reclist-TO_ANSWER.
              Move a_ebeln to sood-OBJDES.              "new addition for testing nato
          move itab-q_com to REClist-COM_TYPE.   "comment for testing only
              append Reclist.
            Endif.
            move reclist-receiver to address.
          endLoop.
    *& END OF RECipient
        ENDIF.
        DOC_CHNG-OBJ_DESCR  = nast-objky.
      ELSE.
        IF RECLIST IS INITIAL.
         LOOP AT reclist INTO RECIPIENT .        " This logic might get commented or deleted. Nato 08/01/06
         ENDLOOP.
        ENDIF.
        DOC_CHNG-OBJ_DESCR  = L_TITLE.
      ENDIF.
      IF RECLIST[] IS INITIAL.
        MESSAGE E573(VE) RAISING RECEIVER_NOT_FOUND.
      ENDIF.
    *& New entry to determine path according to communication
    *& type
    *& If comm type eq U follow convert_otf
    *& then Read text, finaly send API
    *& If comm type eq F follow path to "Convert OTF & FAX
    *& Nato 080106
      REFRESH : HOTFDATA, LT_SOLIX, OBJBIN.
      LOOP AT JOB_OUTPUT_INFO-OTFDATA INTO HOTFDATA.
        APPEND HOTFDATA.
      ENDLOOP.
    *& Prepare content to be converted to PDF format
    *& nato
      CALL FUNCTION 'CONVERT_OTF'
           EXPORTING
                FORMAT                = 'PDF'
                    MAX_LINEWIDTH         = 132
           IMPORTING
                BIN_FILESIZE          = DOC_SIZE
                BIN_FILE              = LD_BINFILE
           TABLES
                OTF                   = HOTFDATA
                LINES                 = HTLINE
           EXCEPTIONS
                ERR_MAX_LINEWIDTH     = 1
                ERR_FORMAT            = 2
                ERR_CONV_NOT_POSSIBLE = 3
                OTHERS                = 4.
    *& new entry just for test today 080306
    *&nato
    *endif.
    *&--end of entry--
      I = 0.
      N = XSTRLEN( LD_BINFILE ).
      WHILE I < N.
        LT_SOLIX-LINE = LD_BINFILE+I.
        APPEND LT_SOLIX.
        I = I + 255.
      ENDWHILE.
    *& end of convertion pdf
      LOOP AT LT_SOLIX INTO WA_SOLIX.
        CLEAR WA_SOLI.
        ASSIGN WA_SOLI TO <PTR_HEX> CASTING.
        MOVE WA_SOLIX TO <PTR_HEX>.
        APPEND WA_SOLI TO OBJBIN.
      ENDLOOP.
    *& Prepare send mail
      CLEAR : NAME, DOCNAME.
      REFRESH : OBJTXT, OBJPACK.
      CONCATENATE NAST-KAPPL NAST-KSCHL INTO NAME.
      CONDENSE NAME.
      IF NAST-NACHA NE '7'.
        CALL FUNCTION 'READ_TEXT'
          EXPORTING
      CLIENT                        = SY-MANDT
            ID                            = 'STAM'
            LANGUAGE                      = SY-LANGU
            NAME                          = NAME
            OBJECT                        = 'OCS'
      ARCHIVE_HANDLE                = 0
      LOCAL_CAT                     = ' '
    IMPORTING
      HEADER                        =
          TABLES
            LINES                         = LINES
       EXCEPTIONS
         ID                            = 1
         LANGUAGE                      = 2
         NAME                          = 3
         NOT_FOUND                     = 4
         OBJECT                        = 5
         REFERENCE_CHECK               = 6
         WRONG_ACCESS_TO_ARCHIVE       = 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.
      ENDIF.
      CONCATENATE NAST-OBJKY '.PDF' INTO DOCNAME .
      CONDENSE DOCNAME.
    *endif.      "temp nato -080406
      if reclist-rec_type eq 'U'.
        DOC_CHNG-OBJ_NAME   = 'Delivery'.
        LOOP AT LINES.
          OBJTXT = LINES-TDLINE.
          APPEND OBJTXT.
        ENDLOOP.
        DESCRIBE TABLE OBJTXT LINES TAB_LINES.
        IF TAB_LINES > 0.
          READ TABLE OBJTXT INDEX TAB_LINES.
          DOC_CHNG-DOC_SIZE  = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
        ENDIF.
        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'.
        APPEND OBJPACK.
        DESCRIBE TABLE OBJBIN LINES TAB_LINES.
        OBJHEAD            = DOCNAME.
        APPEND OBJHEAD.
        OBJPACK-TRANSF_BIN = 'X'.
        OBJPACK-HEAD_START = 1.
        OBJPACK-HEAD_NUM   = 1.
        OBJPACK-BODY_START = 1.
        OBJPACK-BODY_NUM   = TAB_LINES.
        OBJPACK-DOC_TYPE   = 'PDF'.
        OBJPACK-OBJ_NAME   = 'Delivery'.
    OBJPACK-OBJ_DESCR  = NAST-OBJKY.
        OBJPACK-OBJ_DESCR  = A_EBELN.
        OBJPACK-DOC_SIZE   = TAB_LINES * 255.
        APPEND OBJPACK.
        break nhernandez.
        CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          EXPORTING
             DOCUMENT_DATA                    = DOC_CHNG
        PUT_IN_OUTBOX                    = 'X'
      COMMIT_WORK                      = ' '
    IMPORTING
      SENT_TO_ALL                      =
      NEW_OBJECT_ID                    =
          TABLES
           PACKING_LIST                     = OBJPACK
           OBJECT_HEADER                    = OBJHEAD
           CONTENTS_BIN                     =  OBJBIN
           CONTENTS_TXT                     =  OBJTXT
      CONTENTS_HEX                     =
      OBJECT_PARA                      =
      OBJECT_PARB                      =
            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.
          MESSAGE E081(ZGLO) WITH SY-SUBRC RAISING MAIL_SENDING_ERROR.
        ENDIF.
      endif.
    AM I missing something?

    Hi Nat,
    You can check this link which shows how to use the PRINT_TEXT for sending fax.
    http://www.sap-img.com/abap/sending-fax-from-abap.htm
    Also you can check these
    Smartforms
    Sending Smartforms through Fax
    Sending SMARTFORM output to FAX gateway
    How to fax a smartform?
    /people/pavan.bayyapu/blog/2005/08/30/sending-html-email-from-sap-crmerp
    ftp
    Cheers
    VJ

  • Lumia 710 problem after trying to update

    Hello to all nokia users!I have a serious problem with my mobile!I tried to update my phone but 2 times fell to update and now my mobile don't boot!When i try to power on the mobile only vibrate 2 times and then nothing!the screen remains to black!Can you help me please?

    Try to perform the 3 finger reset http://ukmobilereview.com/en/manufacturers/m-nokia/how-to-hard-reset-the-nokia-lumia-920-and-lumia-8...
    If that will not work, send it to Nokia Care. There's no way to fix it on your own..
    Smile lang lagi.

Maybe you are looking for