How to get body of a mail

hello friends,
i want to know how to get Body of mail
thank u
bye
somu

hai
i will describe in detail
i want to separate the body and attachment of body and i should save with the body with the .body extension and i will not change attachment's extension.
i use the message.getContent() to get body. it is working fine while for a mail with out attachment but for a mail with attachment diplayed as the object.
and i also used message[i].getInputStream() method to get body even then
i could not get and the outfile look's like this
----------MailBlocks_8C8578F65F2833A_23FC_9973_mblkn-m02.sysops.aol.com
Content-Type: text/plain; charset="us-ascii"
hello this test mail
Try the New Netscape Mail Today!
Virtually Spam-Free | More Storage | Import Your Contact List
http://mail.netscape.com
----------MailBlocks_8C8578F65F2833A_23FC_9973_mblkn-m02.sysops.aol.com
Content-Type: application/octet-stream; name="Test.java~"
Content-Disposition: attachment; filename="Test.java~"
Content-Transfer-Encoding: base64
aW1wb3J0IGphdmEuaW8uKjsKaW1wb3J0IGphdmEudXRpbC4qOwpjbGFzcyBUZXN0CnsKCXB1
YmxpYyBzdGF0aWMgdm9pZCBtYWluKFN0cmluZyBhcmdbXSkKCXsKCQl0cnl7CgkJQnVmZmVy
ZWRSZWFkZXIgYnI9bmV3IEJ1ZmZlcmVkUmVhZGVyKG5ldyBJbnB1dFN0cmVhbVJlYWRlcihT
eXN0ZW0uaW4pKTsKCQlTeXN0ZW0ub3V0LnByaW50bG4oIkVOVEVSIGRhdGEgdG8gYmUgc2Vh
cmNoZWQgICIpOwoJCVN0cmluZyBtYWlsPWJyLnJlYWRMaW5lKCk7CgkJCgkJRmlsZSBmPW5l
dyBGaWxlKCJmMi50eHQiKTsKCQlGaWxlSW5wdXRTdHJlYW0gZmlzPW5ldyBGaWxlSW5wdXRT
dHJlYW0oImYyLnR4dCIpOwoJCUlucHV0U3RyZWFtUmVhZGVyIGlzcj1uZXcgSW5wdXRTdHJl
YW1SZWFkZXIoZmlzKTsKCQlCdWZmZXJlZFJlYWRlciBicjE9bmV3IEJ1ZmZlcmVkUmVhZGVy
KGlzcik7CgkJU3RyaW5nQnVmZmVyIHNiPW5ldyBTdHJpbmdCdWZmZXIoKTsKCQlpbnQgbGVu
PShpbnQpZi5sZW5ndGgoKTsKCQlmb3IoaW50IGk9MDtpPGxlbjtpKyspCiAgICAJCXsKCQkJ
aWYoYnIxLnJlYWRMaW5lKCkhPW51bGwpCgkJCXsKICAgICAgICAJCQlTdHJpbmdUb2tlbml6
ZXIgc3Q9bmV3IFN0cmluZ1Rva2VuaXplcihicjEucmVhZExpbmUoKSk7CgkJCQl3aGlsZSAo
c3QuaGFzTW9yZVRva2VucygpKSAKCQkJCXsKCQkJCQlpZihtYWlsLmVxdWFscyhzdC5uZXh0
VG9rZW4oKSkKCQkJCQl7CgkJICAgICAgCQkJCSAgIFN5c3RlbS5vdXQucHJpbnRsbihzdC5u
ZXh0VG9rZW4oKSk7CgkJCQkJfQogICAgIAkJCQl9CgkJCX0KICAgIAkJfQkJCgkJfQoJCWNh
dGNoKEV4Y2VwdGlvbiBlKQoJCXsKCQkJU3lzdGVtLm91dC5wcmludGxuKGUpOwoJCX0KCX0K
fQo=
----------MailBlocks_8C8578F65F2833A_23FC_9973_mblkn-m02.sysops.aol.com--

Similar Messages

  • Hi, My Ipad2 body got damage. I wouldlike to replace the my ipad2 body and front glass. I enquired in Apple retail shop (I-Machines-Bahrain), they don't have stock of ipad2 body. They asked me to contact apple support. Kindly advise me how to get body?

    Hi, My Ipad2 body got damage. I wouldlike to replace the my ipad2 body and front glass. I enquired in Apple retail shop (I-Machines-Bahrain), they don't have stock of ipad2 body. They asked me to contact apple support. Kindly advise me how to get body?

    We are not Apple Support.  This is a user to user forum and Apple is not here.  This link may provide the information you need to contact Apple Support:
    http://www.apple.com/bh/sitemap/

  • How to include body of the mail along with attachment using the below FM

    Hi All,
    I am using the FM 'SO_NEW_DOCUMENT_ATT_SEND_API1' to generate an e-mail with excel file as attachment. Can you please  let me know how to include body of the e-mail along with this attachment.
    Thanks & Regards
    Gowthami

    hi,
    see this code
    TABLES: apqi.                         "Queue info definition
    TYPES DECLARATION
    *& Global Types
    TYPE-POOLS: slis,                     "Type for alv list
                sx.                       "SAP connect
    TYPE-POOLS: list.
    *& Types
    TYPES: BEGIN OF s_itab_apqi.
            INCLUDE STRUCTURE apqi.
    TYPES: END OF s_itab_apqi.
               INTERNAL TABLE / WORK AREA DECLARATION             *
    *&  For email  attachment
    DATA:   it_message TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
                    WITH HEADER LINE.
    DATA:   it_attach TYPE STANDARD TABLE OF solisti1 INITIAL SIZE  0
                    WITH HEADER LINE.
    DATA:   it_packing_list  LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
            it_contents      LIKE solisti1 OCCURS 0 WITH HEADER LINE  ,
            it_receivers     LIKE somlreci1 OCCURS 0 WITH HEADER LINE ,
            it_attachment    LIKE solisti1 OCCURS 0 WITH HEADER LINE  ,
            it_object_header LIKE solisti1 OCCURS 0 WITH HEADER LINE  .
    DATA:   v_cnt            TYPE i                                   ,
            v_sent_all(1)    TYPE c                                   ,
            v_doc_data       LIKE sodocchgi1                          ,
            gd_error         TYPE sy-subrc                            ,
            gd_reciever      TYPE sy-subrc                            .
    DATA: p_email   TYPE somlreci1-receiver
                                 VALUE 'mail id here of the reciever'.
    *&   Variable for attachment name
    DATA: v_attach(12).
    *&   Internal table to get data from apqi table
    table here
    DATA: ws_line TYPE slis_listheader.
    DATA: it_list_top_of_page TYPE slis_t_listheader.
    CONSTANTS : v_formname_top_of_page TYPE slis_formname VALUE 'TOP_OF_PAGE'.
    VARIABLE DECLARATION
    DATA: v_colpos        TYPE i.
    DATA: v_transcnt(10)  TYPE c,
          v_transcnte(10) TYPE c,
          v_transcntf(10) TYPE c,
          v_msgcnt(10)    TYPE c,
          v_qid(20)       TYPE c.
    DATA  v_tot_rec(3)    TYPE n.
    DATA :v_date(10) TYPE c,
          v_time(8) TYPE c .
    DATA: v_fromdate(10) .
    DATA: v_todate(10) .
    SELCTION SCREEN
    SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE text-015.
    PARAMETERS:
    SELECTION-SCREEN END OF BLOCK blk1.
    AT SELCTION SCREEN
    AT SELECTION-SCREEN.
      IF p_dfrom IS INITIAL AND
         NOT p_dato IS INITIAL.
        MESSAGE e000(zp) WITH text-020.
      ENDIF.
    START OF SELECTION
    START-OF-SELECTION.
    *&  To get data from APQI table into internal table
      PERFORM populate_itab.
    **To Populate table with details to be entered into .xls file
      PERFORM build_xls_data_table.
    END OF SELECTION
    END-OF-SELECTION.
    *& To display ALV list when IT_APQI is not initial
      IF NOT it_apqi[] IS INITIAL.
    *&-- Send an Notification email
        PERFORM send_email .
    *&--To populate fields for ALV
        PERFORM build_fieldcat   .
        PERFORM build_eventcat   .
        PERFORM e04_comment_build  USING it_list_top_of_page[].
        PERFORM build_layout     .
        PERFORM build_sortcat    .
        PERFORM start_list_viewer.
      ELSE.
    *&-- If no record exists in IT_APQI internal table then message is displayed
        MESSAGE s000(zp) WITH text-021.
      ENDIF.
    FORMS **********************************
    populate itab here -
    *&      Form  BUILD_FIELDCAT
    FORM build_fieldcat .
    ENDFORM.                    " BUILD_FIELDCAT
    *&      Form  BUILD_EVENTCAT
    FORM build_eventcat .
      DATA: v_header(25) .
      CONCATENATE 'ZPIPY016' p_dfrom p_dato INTO v_header.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type     = 0
        IMPORTING
          et_events       = it_eventcat[]
        EXCEPTIONS
          list_type_wrong = 1
          OTHERS          = 2.
      READ TABLE it_eventcat WITH KEY name = slis_ev_top_of_page
                                 INTO wa_eventcat.
      IF sy-subrc = 0.
        MOVE v_formname_top_of_page TO wa_eventcat-form.
        APPEND wa_eventcat TO it_eventcat.
      ENDIF.
    ENDFORM.                    " BUILD_EVENTCAT
    *&      Form  BUILD_LAYOUT
    FORM build_layout .
      ws_layout-no_keyfix           = 'X'.
      ws_layout-group_buttons       = 'X'.
      ws_layout-colwidth_optimize   = 'X'.
    ENDFORM.                    " BUILD_LAYOUT
    *&      Form  BUILD_SORTCAT
    FORM build_sortcat .
      CLEAR wa_sortcat.
      CLEAR v_colpos.
    ENDFORM.                    " BUILD_SORTCAT
    *&      Form  START_LIST_VIEWER
    FORM start_list_viewer .
      DATA: ws_pgm  LIKE sy-repid.
    *& To Display ALV list
      ws_pgm = sy-repid.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          i_callback_program = ws_pgm
          is_layout          = ws_layout
          it_fieldcat        = it_fieldcat
          it_sort            = it_sortcat
          i_save             = 'A'
          it_events          = it_eventcat
        TABLES
          t_outtab           = it_apqi
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
    ENDFORM.                    " START_LIST_VIEWER
    *&      Form  BUILD_XLS_DATA_TABLE
    FORM build_xls_data_table .
      CLASS cl_abap_char_utilities DEFINITION LOAD.
      CONSTANTS: con_tab  TYPE c VALUE cl_abap_char_utilities=>horizontal_tab,
                 con_cret TYPE c VALUE cl_abap_char_utilities=>cr_lf.
    *& To populate it_attach table to be send as email.
      CONCATENATE 'Error of transaction SM35' ' '
         INTO it_attach SEPARATED BY con_tab.
      CONCATENATE con_cret it_attach  INTO it_attach.
      APPEND  it_attach.
    *& To gettotal number of error records
      DESCRIBE TABLE it_apqi LINES v_tot_rec .
      CONCATENATE  'Number of Errors  = '  v_tot_rec
                INTO it_attach SEPARATED BY con_tab.
      CONCATENATE con_cret it_attach  INTO it_attach.
      APPEND  it_attach.
      CONCATENATE text-001
                  text-002
                  text-003
                  text-004
                  text-005
                  text-006
                  text-007
                  text-008
                  text-009
                  text-010
                  text-011
                  text-012
             INTO it_attach SEPARATED BY con_tab.
      CONCATENATE con_cret it_attach  INTO it_attach.
      APPEND  it_attach.
    *& To populate it_attach from it_apqi
      LOOP AT it_apqi INTO wa_apqi.
    *& To get the date format in DD/MM/YYYY
        WRITE wa_apqi-credate TO v_date  DD/MM/YYYY.
    *& To get time format in hh:mm:ss.
        v_time = wa_apqi-cretime.
        CONCATENATE  v_time(2) ':' v_time2(2) ':' v_time4(2) INTO v_time.
        v_transcnt  = wa_apqi-transcnt.
        v_transcnte = wa_apqi-transcnte.
        v_transcntf = wa_apqi-transcntf.
        v_msgcnt    = wa_apqi-msgcnt.
        v_qid       = wa_apqi-qid.
        CONCATENATE wa_apqi-groupid wa_apqi-creator
                         wa_apqi-qstate v_date
                         v_time wa_apqi-progid
                         wa_apqi-userid  v_transcnt
                         v_transcnte v_transcntf
                         v_msgcnt v_qid
                   INTO it_attach SEPARATED BY con_tab.
        CONCATENATE con_cret it_attach  INTO it_attach.
        APPEND  it_attach  .
        CLEAR   it_attach  .
        CLEAR:  v_transcnt ,
                v_transcnte,
                v_transcntf,
                v_msgcnt   ,
                v_qid      ,
                v_date     ,
                v_time     .
      ENDLOOP.
    ENDFORM  .                    " BUILD_XLS_DATA_TABLE
    *&      Form  POPULATE_EMAIL_MESSAGE_BODY
    FORM populate_email_message_body .
      REFRESH it_message.
      it_message = 'message here'.
      APPEND it_message.
      CLEAR it_message.
    ENDFORM.                    " POPULATE_EMAIL_MESSAGE_BODY
    *&      Form  SEND_FILE_AS_EMAIL_ATTACHMENT
    FORM send_file_as_email_attachment TABLES pit_message
                                              pit_attach
                                        USING p_email
                                              p_mtitle
                                              p_format
                                              p_filename
                                              p_attdescription
                                              p_sender_address
                                              p_sender_addres_type
                                     CHANGING p_error
                                              p_reciever.
      DATA: ld_error    TYPE sy-subrc,
            ld_reciever TYPE sy-subrc,
            ld_mtitle LIKE sodocchgi1-obj_descr,
            ld_email LIKE  somlreci1-receiver,
            ld_format TYPE  so_obj_tp ,
            ld_attdescription TYPE  so_obj_nam ,
            ld_attfilename TYPE  so_obj_des ,
            ld_sender_address LIKE  soextreci1-receiver,
            ld_sender_address_type LIKE  soextreci1-adr_typ,
            ld_receiver LIKE  sy-subrc.
      ld_email               = p_email         .
      ld_mtitle              = p_mtitle        .
      ld_format              = p_format        .
      ld_attdescription      = p_attdescription.
      ld_attfilename         = p_filename      .
      ld_sender_address      = p_sender_address.
      ld_sender_address_type = p_sender_addres_type.
    Fill the document data.
      v_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
      v_doc_data-obj_langu = sy-langu.
      v_doc_data-obj_name  = 'SAPRPT'.
      v_doc_data-obj_descr = ld_mtitle .
      v_doc_data-sensitivty = 'F'.
    Fill the document data and get size of attachment
      CLEAR v_doc_data.
      READ TABLE it_attach INDEX v_cnt.
      v_doc_data-doc_size =
         ( v_cnt - 1 ) * 255 + STRLEN( it_attach ).
      v_doc_data-obj_langu  = sy-langu.
      v_doc_data-obj_name   = 'SAPRPT'.
      v_doc_data-obj_descr  = ld_mtitle.
      v_doc_data-sensitivty = 'F'.
      CLEAR it_attachment.
      REFRESH it_attachment.
      it_attachment[] = pit_attach[].
    Describe the body of the message
      CLEAR it_packing_list.
      REFRESH it_packing_list.
      it_packing_list-transf_bin = space.
      it_packing_list-head_start = 1.
      it_packing_list-head_num = 0.
      it_packing_list-body_start = 1.
      DESCRIBE TABLE it_message LINES it_packing_list-body_num.
      it_packing_list-doc_type = 'RAW'.
      APPEND it_packing_list.
    Create attachment notification
      it_packing_list-transf_bin = 'X'.
      it_packing_list-head_start = 1.
      it_packing_list-head_num   = 1.
      it_packing_list-body_start = 1.
      DESCRIBE TABLE it_attachment LINES it_packing_list-body_num.
      it_packing_list-doc_type   =  ld_format.
      it_packing_list-obj_descr  =  ld_attdescription.
      it_packing_list-obj_name   =  ld_attfilename.
      it_packing_list-doc_size   =  it_packing_list-body_num * 255.
      APPEND it_packing_list.
    Add the recipients email address
      CLEAR it_receivers.
      REFRESH it_receivers.
      it_receivers-receiver = ld_email.
      it_receivers-rec_type = 'U'.
      it_receivers-com_type = 'INT'.
      it_receivers-notif_del = 'X'.
      it_receivers-notif_ndel = 'X'.
      APPEND it_receivers.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
        EXPORTING
          document_data              = v_doc_data
          put_in_outbox              = 'X'
          sender_address             = ld_sender_address
          sender_address_type        = ld_sender_address_type
          commit_work                = 'X'
        IMPORTING
          sent_to_all                = v_sent_all
        TABLES
          packing_list               = it_packing_list
          contents_bin               = it_attachment
          contents_txt               = it_message
          receivers                  = it_receivers
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          document_type_not_exist    = 3
          operation_no_authorization = 4
          parameter_error            = 5
          x_error                    = 6
          enqueue_error              = 7
          OTHERS                     = 8.
    Populate zerror return code
      ld_error = sy-subrc.
    Populate zreceiver return code
      LOOP AT it_receivers.
        ld_receiver = it_receivers-retrn_code.
      ENDLOOP.
    ENDFORM.                    " SEND_FILE_AS_EMAIL_ATTACHMENT
    *&      Form  SEND_EMAIL
    FORM send_email .
    Populate message body text
      PERFORM populate_email_message_body.
      PERFORM send_file_as_email_attachment
                                   TABLES it_message
                                          it_attach
                                    USING p_email
                                          'Error Sessions from SM35'
                                          'XLS'
                                          'filename'
                                          v_attach
                                 CHANGING gd_error
                                          gd_reciever.
    ENDFORM.                    " SEND_EMAIL
    *&      Form  E04_COMMENT_BUILD
          text
         -->E04_LT_TOP_OF_PAGE  text
    FORM e04_comment_build USING lt_top_of_page TYPE slis_t_listheader.
      CLEAR: v_fromdate,
             v_todate.
      WRITE p_dfrom TO v_fromdate  DD/MM/YYYY.
      WRITE p_dato TO  v_todate    DD/MM/YYYY.
    *& To write header in ALV list
    *& Program name
      CLEAR ws_line.
      ws_line-typ  = 'H'.
      ws_line-info = text-016.
      APPEND ws_line TO lt_top_of_page.
      CLEAR ws_line.
      ws_line-typ  = 'S'.
      ws_line-key = text-018.
      ws_line-info = v_tot_rec.
      APPEND ws_line TO lt_top_of_page.
    *& Date from
      CLEAR ws_line.
      ws_line-typ  = 'S'.
      ws_line-key  = text-050.
      ws_line-info = v_fromdate.
      APPEND ws_line TO lt_top_of_page.
    *& Date to
      CLEAR ws_line.
      ws_line-typ  = 'S'.
      ws_line-key  = text-051.
      ws_line-info = v_todate.
      APPEND ws_line TO lt_top_of_page.
    ENDFORM.                    "E04_COMMENT_BUILD
          FORM TOP_OF_PAGE                                              *
    FORM top_of_page.
    *& To write Heading in Top of page
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = it_list_top_of_page.
    ENDFORM.                    "TOP_OF_PAGE
    thanks

  • I have several e-mail addresses . . . how to get them all in Mail?

    I'm new to Mail and get my primary e-mail just fine (att.yahoo). I have several other e-mail addresses from different domain names -- work, organizations, etc -- how do I get these as well in mail.
    I know there is a simple answer to this but I haven't found it.
    Thanks.

    I have a similar add to apple mail issue: I am trying to add my NYC Board of Education e mail. But I can't figure out what to write in the Outlook Wel Access Server.
    If anyone can help me , I put Exchange Server as my account type.

  • How to get notes from Apple Mail to iPad Notes?

    Greetings,
    I can not seem to find any way to get notes from Apple Mail on my Mac to Notes on my iPad.
    What the heck do I have to do?
    There is no Notes sync option in iTunes.
    Also, I can not sign in to MobileMe in my System Preferences. It alway says the member name or passowrd is wrong. How do I find out what my member name is? I only know my Apple ID which is an email addres, and that does not work. I am able to sign into MobileMe on my iPad.
    Help

    On your phone.  If you have Notes turned to On in Settings>iCloud, and also had notes on the phone prior to turning on this setting, you should have two accounts in the notes app: On My iPhone and iCloud (listed as your iCloud ID). 
    Did you have notes on your phone prior to turn on Notes in Settings>iCloud?  Is Notes turned to On in Settings>iCloud now?

  • How to get swoosh sound when mail gets sent

    How to get the swoosh sound back when mail gets sent?

    I'm talking about my iMac desktop. I have OSX 10.9.5. I used to hear the swoosh sound when I sent an e-mail. Suddenly it's gone, and I can't find out how to get it back. I miss it!

  • How to get name of default mail server?

    Hi ,
    I need to get the name of default mail server . In 1.5 i can get this using
    System.getenv("MAIL_SERVER");.
    How do i get this in 1.4?
    Since getenv() is depricated in 1.4 , how can i get the name of mail server in 1.4?
    plz help me....

    How do i get this in 1.4?Pass the environment variable to your JVM (windows) with the -D parameter
    java -Dmail_server="%MAIL_SERVER%" myClassthen in your code
    String mail_server = System.getProperty("mail_server");--
    http://www.rgagnon.com/howto.html

  • How to get next batch of mails from GMail?

    Hello,
    I can not get next batch of mail from Gmail. I thought how this is question for gmail but they have respond me this:
    "Thanks for your interest in Gmail and in Google. Because we're testing Gmail, there is some information we're unable to share."
    Does anyone can tell me how to do this?
    Thanks in advance!
    Best Regards,
    Nikola Putnik

    You cannot

  • Wiki Server: how to get rid of the "mail" nav menu item

    How do I get rid of the "mail" nav menu item at the top right of our Wiki? Our mail server isn't switched on so I wouldn't have expected it to show in the first place.

    I solved my issue, and it can probably help with yours too. Sounds like you'll have to enable web archives in order to disable them for individual groups.
    See my lonely thread at:
    http://discussions.apple.com/thread.jspa?messageID=7006339#7006339

  • How to get back my deleted mail message

    how to get back my deleted message

    Not very likely, but It's possible, but you must quit using the Computer immediately.
    Either boot this one in Target mode...
    http://docs.info.apple.com/article.html?artnum=58583
    And recovering from another Mac, or booting this Mac from another HDD, then using Data Rescue II...
    http://www.prosofteng.com/products/data_rescue.php
    (Has a Free Demo to see if it could or not, but you'll need another drive to recover to).
    Or professional Data Recovery Services.
    BUT, every second you use that Mac the chances will be slimmer.

  • How to get successful delivery of mail.

    I use to log all outgoing mails in a table and this code executes after successfull execution of Transport.send().
    Some time some of my customers complain that they are not receiving mails while we have logs in our table.
    Is there any way to get it confirmed that mail has been sent successfully or not?

    You can look into Deliver Status Notifications, but they don't provide a
    guarantee either. You can check the logs in your mail server to see
    what it did with the message that it accepted from JavaMail but that
    your client never saw. Most likely the messages are being filtered
    out by spam filters or some such.

  • How to get Detail of a mail

    i have 20 mails in my mail box(in inbox) i want to get a perticular mail detail and its body how?
    what parameter shoud i pass for getting a mail detail when i click to that mail

    Explain what you mean by "mail detail".
    You can easily access any message in your mailbox by number.
    You can also search for a particular message based on content.
    Once you have the Message object, you can access all the details of the message.
    See the msgshow.java demo program.

  • How to get and delete questionable mail without actually opening it first.

    I am new to Apple again, having bought my first Apple many years ago (an Apple 2C). Does anyone know if I can get mail and delete it without opening it first? If so, I am thinking it is somehow in Preferences but I cannot figure it out. I often get mail from unknown sources (left over from my PC days - ?able viruses on PC) that I don't wish to take the chance to open. In order to delete it, I have to open it first. Any thoughts?? Thanks in advance for your help.

    Actually, there is a risk in viewing certain messages, but only if you have enabled Preferences > Viewing > Display remote images in HTML messages — see How HTML Email Messages Relate to Unsolicited Commercial Email ("spam").
    As long as Display remote images in HTML messages is OFF and you don’t click on any hyperlink or image the message may contain, you can safely view any messages you receive in Mail.
    That said, there are at least three ways to select a message and delete it without displaying its contents:
    (1) You can hide the preview pane by dragging the separator bar between the message list and the preview pane to the bottom of the window, or by just double-clicking within the separator bar, so that the preview pane disappears and only the message list is visible. To make the preview pane visible again, drag the separator bar up from the bottom of the window, or just double-click on the separator bar again.
    (2) If you select the message with the mouse, the message is displayed in the preview pane when the mouse button is released, not when it’s pressed. This allows you to drag the message to the Trash or to any other mailbox without Mail trying to display its contents.
    (3) Ctrl-clicking on a message causes a contextual menu to appear, from which you can usually (but not always, don’t ask me why) choose Delete or Move To, before the contents of the message are displayed in the preview pane.

  • How to get the vendor's mail?

    hello,
    i have one requirement,
    i need what are the settings are required for the configuration  and tell me how to do?
    when i raised the PO, the po goes to vendor, vendor has accepts the po or rejects the po.
    suppose the vendor accept the PO, or rejects the PO, the byer should get the mail how to do,
    what are the setting are required for this.
    My prerequesites
    1)in material master  --purchasing view click the Acknowlegge field.
    2) in Inforecord click the acknowledge field.
    3) while creating the PO select the acknowledge field in item detail tab(confirmation)
    4)email Id taken from Pur grp
    tell me what are the settings are required to get the mail from vendor.
    Regards
    sapman

    yes,,, vendor may not use SAP.....But he has seen the PO in other media(portal),,,
    suppose he rejects the PO,,, or accepts the po,,, how the buyer get the mail?
    plz explain me

  • How to get rid of VIP mail box added version 6 ?

    I just updated my iPod to 6.0, and there are two things I do not like about it:
    First, it added a "VIP" mail box which I don't want. How do I get rid of it?
    It also added a "passbook" app or something, which I don't want and don't need. I've religated it to the "not used much" folder, but I wish they wouldn't add it without asking me or at least let me take it off my device.
    Shame on you Apple. For the first time since I've had my iPod I'm feeling messed with and I don't like it.
    David

    Try a reset: hold down the home button along with the power button until you see the Apple, then let go.

Maybe you are looking for

  • Multiple file copies just randomly miss a few of the files

    This is something that has happened to me on all networks I've used. My home network (gigabit LAN or 802.11n), work network, and any client network I've ever been on while supporting. I can select say 10 files on my MBP in finder. And either copy/pas

  • SSRS - Financial Report

    Hi , I have a table in sql server with Data like below . A Financial Report is required to be built based on the below data Customer Type  Month Year Total Alpha  ko 1 2014 100 Beta  ro 1 2014 200 Omega  to 1 2014 100 Alpha  ko 2 2014 200 Alpha  to 2

  • How to solve the problems of adobe application manager

    i am facing a problem while installing adobe photoshop cs6 it shows adobe application manager is not working correctly. what should i do?

  • How to send text file as an email attachment havin more than 255 characters

    My requirement is to generate a text file and to send this text file as E-mail attachment. I am using FM 'SO_NEW_DOCUMENT_ATT_SEND_API1' to send the E-mail. but here the limitation is the number of characters per line must not be more than 255 charac

  • External monitor for g5?

    I have a 2009 desktop mac with a broken monitor. I was wondering if there is any way to use a old g5 computer as an external monitor?