Mail content coming as Attachment too.

Hi -
While we are trying to send mails using SO_DOCUMENT_SEND_API1 ,
the mail content is coming as attachment .
Can you suggest whats worng ?
Thanks,
sandhya

Hi,
Try using the sample code below:
*& Report  ZBC_ITAB_TO_EXCEL_NEW                                       *
REPORT  ZBC_ITAB_TO_EXCEL_NEW                   .
CLASS: cl_abap_char_utilities DEFINITION LOAD.
DATA: docdata LIKE sodocchgi1,
      objpack LIKE sopcklsti1 OCCURS 1 WITH HEADER LINE,
      objtxt LIKE solisti1 OCCURS 10 WITH HEADER LINE,
      objbin1 LIKE solisti1 OCCURS 10 WITH HEADER LINE,
      objbin2 LIKE solisti1 OCCURS 10 WITH HEADER LINE,
      objbin_final LIKE solisti1 OCCURS 10 WITH HEADER LINE,
      reclist LIKE somlreci1 OCCURS 1 WITH HEADER LINE,
      tab_lines TYPE sy-tabix.
DATA: gd_sender_type LIKE soextreci1-adr_typ.
DATA: c_tab TYPE c VALUE cl_abap_char_utilities=>horizontal_tab,
      c_ret TYPE c VALUE cl_abap_char_utilities=>cr_lf.
DATA: c_dev TYPE sy-sysid.
DATA: BEGIN OF i_data OCCURS 0,
      a(20),
      b(20),
      END OF i_data.
DATA: BEGIN OF st,
      f1(2) TYPE c,
      f2(2) TYPE n,
      END OF st.
DATA: itab1 LIKE TABLE OF st WITH HEADER LINE,
      itab2 LIKE TABLE OF st WITH HEADER LINE.
DATA: n TYPE i.
PARAMETER: p_email1 LIKE somlreci1-receiver,
                       p_sender LIKE somlreci1-receiver.
START-OF-SELECTION.
  itab1-f1 = 'AA'. itab1-f2 = '01'. APPEND itab1.
  itab1-f1 = 'BB'. itab1-f2 = '02'. APPEND itab1.
  itab1-f1 = 'CC'. itab1-f2 = '03'. APPEND itab1.
  itab2-f1 = 'ZZ'. itab2-f2 = '26'. APPEND itab2.
  itab2-f1 = 'YY'. itab2-f2 = '25'. APPEND itab2.
  LOOP AT itab1.
    CONCATENATE itab1-f1 itab1-f2 INTO objbin1 separated BY c_tab.
    CONCATENATE c_ret objbin1 INTO objbin1.
    APPEND objbin1.
  ENDLOOP.
  LOOP AT itab2.
    CONCATENATE itab2-f1 itab2-f2 INTO objbin2 separated BY c_tab.
    CONCATENATE c_ret objbin2 INTO objbin2.
    APPEND objbin2.
  ENDLOOP.
  LOOP AT objbin1.
    MOVE objbin1-line TO objbin_final-line.
    APPEND objbin_final.
  ENDLOOP.
  LOOP AT objbin2.
    MOVE objbin2-line TO objbin_final-line.
    APPEND objbin_final.
  ENDLOOP.
  PERFORM process_email.
  c_dev = sy-sysid.
  IF sy-sysid = c_dev.
    wait up to 5 seconds.
    SUBMIT rsconn01 WITH mode = 'INT'
    WITH output = 'X'
    AND RETURN.
  ENDIF.
  IF sy-subrc = 0.
    WRITE: / 'Email succesfilly delivered'.
  ELSE.
    WRITE: / 'failure'.
  ENDIF.
*&      Form  process_email
*       text
FORM process_email.
  IF p_sender EQ space.
    gd_sender_type = space.
  ELSE.
    gd_sender_type = 'INT'.
  ENDIF.
*Body
  docdata-obj_name = 'Mail_Excel_File'.
  docdata-obj_descr = 'Excel file attachment'.
  objtxt = 'Attached is the sample Excel file'.
  APPEND objtxt.
  DESCRIBE TABLE objtxt LINES tab_lines.
  READ TABLE objtxt INDEX tab_lines.
  docdata-doc_size = ( tab_lines - 1 ) * 255 + strlen( objtxt ).
  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.
*Attachment
  n = 1.
  DESCRIBE TABLE objbin1 LINES tab_lines.
  objpack-doc_size = tab_lines * 255.
  objpack-transf_bin = 'X'.
  objpack-head_start = 1.
  objpack-head_num = 1.
  objpack-body_start = n.
  objpack-body_num = tab_lines.
  objpack-doc_type = 'XLS'.
  docdata-obj_name = 'Excel_File_Attachment1'.
  objpack-obj_descr = 'Excel File Attachment1'.
  APPEND objpack.
  n = n + tab_lines.
  DESCRIBE TABLE objbin2 LINES tab_lines.
  objpack-doc_size = tab_lines * 255.
  objpack-transf_bin = 'X'.
  objpack-head_start = 1.
  objpack-head_num = 1.
  objpack-body_start = n.
  objpack-body_num = tab_lines.
  objpack-doc_type = 'XLS'.
  docdata-obj_name = 'Excel_File_Attachment2'.
  objpack-obj_descr = 'Excel File Attachment2'.
  APPEND objpack.
*Create the list of recipients
  reclist-receiver = p_email1.
  reclist-rec_type = 'U'.
  reclist-express = 'X'.
  APPEND reclist.
*Send the e-mail
  CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
      document_data              = docdata
      put_in_outbox              = 'X'
      commit_work                = 'X'
    TABLES
      packing_list               = objpack
      contents_bin               = objbin_final
      contents_txt               = objtxt
      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.
  COMMIT WORK.
ENDFORM.                    "process_email
Hope it helps
Regards
Mansi

Similar Messages

  • Mail adapter - content coming as attachment

    Hellow experts,
    I am sending data from R3 to emails using mail adapter.  I am using the follwoing mail package format.  
    <?xml version="1.0" encoding="UTF-8" ?>
      <ns1:Mail xmlns:ns1="http://sap.com/xi/XI/Mail/30">
      <Subject>Water Catchment Form</Subject>
      <From>[email protected]</From>
      <To>[email protected]</To>
      <Reply_To>[email protected]</Reply_To>
      <Content_Type>text/plain</Content_Type>
      <Content>You have work order(s) !!</Content>
      </ns1:Mail>
    In my mail adapter, I have ticked
      Use Mail Package Format and
      Keep Attachments
    I am getting the content as an attachment - I want it inside the email.
    The attachment is coming with a name Untitled.pdf  - I need the actual name.
    Am I missing anything?
    What can I do to get things right?
    Thnx

    Hi Sabbir
    refer this Pdf may be helpful for u
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9e6c7911-0d01-0010-1aa3-8e1bb1551f05
    Thanks!!

  • In Mail Body Coming as attachment

    Hi All,
    I have created one Zfunctionmodule , in that i have used one standard function module SO_NEW_DOCUMENT_SEND_API1.
    My problem is Body is coming as an attachment in mail instead of displaying directly.
    Plz help me on this..
    DATA:  ls_mail_doc TYPE sodocchgi1,
            lt_header TYPE TABLE OF solisti1,
            lt_content TYPE TABLE OF solisti1,
            lt_reciever TYPE TABLE OF somlreci1,
            ls_header TYPE  solisti1,
            ls_content TYPE solisti1,
            ls_reciever TYPE somlreci1.
    ls_reciever-rec_type = 'U'.
        ls_reciever-receiver = lv_reciver.
        ls_reciever-COM_TYPE = 'INT'.
       APPEND ls_reciever TO lt_reciever.
        ls_mail_doc-obj_name = 'DRAW'.
        ls_mail_doc-obj_descr = 'Invoice Rejection Information'.
    CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
          EXPORTING
            document_data              = ls_mail_doc
            document_type              = 'RAW'
            commit_work                = 'X'
          IMPORTING
            new_object_id              = ev_objid
          TABLES
            object_header              = lt_header
            object_content             = lt_content
            receivers                  = lt_reciever
    Regards,
    Siva

    you can try with following piece of code
    DATA: ls_mail_doc TYPE sodocchgi1,
    lt_header TYPE TABLE OF solisti1,
    lt_content TYPE TABLE OF solisti1,
    lt_reciever TYPE TABLE OF somlreci1,
    ls_header TYPE solisti1,
    ls_content TYPE solisti1,
    ls_reciever TYPE somlreci1,
    L_WA_TXT TYPE SOLISTI1,
    ev_objid type SOFOLENTI1-OBJECT_ID.
    ls_reciever-rec_type = 'U'.
    ls_reciever-receiver = 'xyz@xyz..'. " put your email id here
    ls_reciever-COM_TYPE = 'INT'.
    APPEND ls_reciever TO lt_reciever.
    ls_mail_doc-obj_name = 'DRAW'.
    ls_mail_doc-obj_descr = 'Invoice Rejection Information'.
    L_WA_TXT =  'content of the mail'.
    APPEND L_WA_TXT TO lt_content.
    CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
    EXPORTING
    document_data = ls_mail_doc
    document_type = 'RAW'
    commit_work = 'X'
    IMPORTING
    new_object_id = ev_objid
    TABLES
    object_header = lt_header
    object_content = lt_content
    receivers = lt_reciever.
    Best Regards
    Sanju.Pal

  • Content coming as .txt attachment along with email but not in email body

    Hi,
    I have a proxy to email scenario. The requirement is to generate an excel sheet and keep it as an attachment and send it to user through email.
    I am able to get the excel sheet as an attachment in email but the content of email is also coming as attachment which I do not want.
    Problem area :
    ============================================
    The Content should come in Email body but it is coming as .txt attachment in email. The email body is blank.
    Can someone help as how I can get the content in email body.?
    /Regds
    Azahar

    Hi Azahar,
       May you can find the solution in the "
    Adapter-Specific Message Attributes
    Configuring the Receiver Mail Adapter (SAP Library - Partner Connectivity Kit)

  • BPEL Workflow mail  Notification content coming as attchment

    Hi All,
    iam using actionable notifications in bpel workflow.
    iam getting mails properly but problem with payload part coming as attachment (as content.html).iam facing this problem only with Microsoft outlook.
    Here are server deatils.
    Server version: SOA suite 10.1.3.4
    My Email Client: Microsoft Outlook
    Please advice..
    Regards,
    Sudhakar.M

    Hi ,
    in workflow notification mail some part of message is coming in body ...payload details of workflow coming as attachment (as content.html)
    i tried to apply patch 8279781..but iam getting some errors
    OPatch detects your platform as 207 while this patch 8279781 supports platforms:
    0 (Generic Platform 1)
    This patch is not suitable for this operating system.
    Please contact support for the correct patch.
    ERROR: OPatch failed during pre-reqs check.
    OPatch returns with error code = 150
    can u plz me help me on this...
    Regards,
    Sudhakar.M

  • Sender Mail Adapter - forcing content as an attachement

    Hi all,
    We are using the Sender Mail Adapter to pull emails from the inboxes of some users of an exchange server.  We use the Mail Package option.
    We have noticed that the content of the emails are by-default added as attachments when there are no real attachments to the emails.  However the content is not added as an attachment when one or more attachments are present in these emails.
    Is there a way of forcing the Sender Mail Adapter to always add the content as an attachment and keeping the other attachments as well?  and of course maintain the Mail Package message type as the main payload...?
    Many thanks,
    Aldo

    Hi Stefan,
    Thanks for your reply.  I am glad to hear that I am wrong again )
    In your opinion is it possible to force the Outlook Exchange server to add the content attachment every time?  I mean by doing some configuration on it...?
    The reason why we would like to do this is because when - in the content tag of a Mail Package message - we have MIME message parts that are of content-type text/html we are having problems in decoding the html back to a readable format.
    To do this we use the apache QuotedPrintableCodec Java class.
    This works fine when the content type of the message is just text/plain but we get an exception when we try with text/html.
    The exception we get is:
    org.apache.commons.codec.DecoderException: Invalid URL encoding: not a valid digit (radix 16): 13
    I don't know if this is because of the two character sets we have in the payload (utf-8 and iso-8859-1) or if it is for other reasons...
    If you could help me figure out how to forward any HTML email to another system in a readable format it would be great.
    Thanks for your support,
    Aldo

  • SBO mailer working fine but attachment is not coming

    Dear All
    We have configured the sbo mailer and mails are coming accordingly also, but attachments are missing in mails.
    *** SAP Business One Client Log ***
    WaitForSingleObject has finished with return value:0
    SAP Business One Client return code:0
    Distributing results
    Unable to extract HTML report output to file C:\Windows\TEMP\Report.html Error code:-2028
    Unable to extract PDF report output to file C:\Windows\TEMP\Report.pdf Error code:-2028
    Unable to extract XML report output to file C:\Windows\TEMP\Report.xml Error code:-2028
    SMTP Server: secure.emailsrvr.com:25
    Sender Email: USER<[email protected]>
    Sending email to [email protected]
    Schedule processed
    Please suggest the solution.
    Regards
    Ravi

    Hi Ravi,
    Please check Right of Attachment Folder for user.
    If user is not having Right to access Attachment Folder then Attachment will not come in mail.
    Please provide sufficient right to user for attachment folder then check.
    Hope this helps
    Regards::::
    Atul Chakraborty

  • Using the Mail content and Mail Attachment in the mapping

    Hi,
    I have a requirement in which I need to read a file from the mail server and I am using the sender mail adapter for this. I have to convert the attachment of the mail in to the payload. To do this I am using the payload swap bean and mail transform bean. Now the issue is I have to get the information from both attachment and the mail content and need to map it to the target message. Please let me know how to do this.
    Thanks!
    ~Vaas

    Not sure if there is a staright forward way to achieve this.
    But I can think of a work around for your scenario.
    >>To do this I am using the payload swap bean and mail transform bean.
    Instead of doing it this way, try
    1. Message Transform bean that will transform the payload(content of the mail) to XML.
    2. PayloadSwapBean to switch Payload and Attachment.
    3. Message Transform bean to transform the attachment to XML.
    4. Custom adapter module to read the attachment, contnet and create your own desired XML.
    Alternatively, step 4 could be replaced by a Java mapping doing the same operation.
    Regards
    Jai

  • TS3899 Whenever I send a email from iPad mail app with an attachment from pages or numbers, the receiver is getting only attachment in the email. They are getting the email content. How to troubleshoot this issue.

    Whenever I send a email from iPad mail app with an attachment from pages or numbers, the receiver is getting only attachment in the email. They are getting the email content. How to troubleshoot this issue.

    Someone is probably sending spam with your address forged on the To: line.  Could be one of your old contacts with a Windows machine has a virus that's doing it.  It's also possible your e-mail account has been hacked, though I'd think such a hacker would be a bit more purposeful.
    For more information, see:
    http://www.reedcorner.net/guides/macvirus/is_it_malware.php#spam
    * Disclaimer: links to my pages may give me compensation, and should not be taken as endorsement of my services by Apple.

  • Sender "Mail" adapter - CSV file attachment

    Hi there
    I'm looking for some help in configuring a sender mail adapter that receives ".csv" files. I did read some blogs that mention using the "PayloadSwapBean" module to read the mail attachment instead of the mail content. My problem is to now convert the ".csv" file into a message. Is there a module that I can use ( is it the "MessageTransfomBean" ) and how. Any help would be appreciated.
    Thanks
    Salil

    Hi Salil,
    If you want to send a mail with a body and attachments, the message sender HAS to provide an XI message with attachments. I doubt a CSV file does justice.
    As Renjith said you need to convert CSV to XmL.
    A short description about the Standard Modules:
    MessageTransformationBean is a standard module used to apply the XSLT mapping to the adapter module by using <i>Transform.class</i> ( This xslt mapping is done to create a mail package, Dont confuse with the actual mapping in your case this is NOT for converting csv to xml).
    Also this module can be used to change the name and type of payloads by using <i>Transform.contentType</i>, <i>Transform.contentDisposition</i>, <i>Transform.contentDescription</i>.
    PayloadSwapbean is a standard module for replacing payloads with other payloads (SWAP)
    If you want to give each attachment a certain name use Parameters, <i>swap.keyname</i> for name of the payload and <i>swap.keyvalue</i>.
    I Hope the use of standard modules is understood.

  • Attachment too large !

    Since I reinstalled OS ver 1.0.7.3312 on my Playbook, I an getting this message in all my mail attachments: " Attachment too large " making impossible to download them. When the help buttom next to this message is clicked you get this other message: " The attachment exceeds the download size set by your administrator "
    The afore mentioned message appears too when I try to compose a new mail with attachments. This happens ALWAYS, no matter which email account I am using. Otherwise in my bridged BB Bold 9700, attachments are not an issue nor are they in the mail accounts when entered directly trough Playbook's web browser... seems the problem is in the bridged mail client on the Playbook.
    Question: How can this fixed?... Already deleted bridge in both equipments and reinstalled it without any result, already did a complete as of factory system install... 

    I have the same probelm, having just purchased the PB. n my second call to BB, after waiting 20 minutes, I reported tpo them that my BES provider was on version 4.1.4. Response was they need to have 4.1.5 or go to 5.0.3 and i will solve the problem. You'd think they would have had testing this before re;leasing the PB upgrade which triggered the problem. I'm no techie, but after debating on PB and using BB's for many years, this is becomeing to much of a hassle!!
    Great products that don't work when you buy it, are simply junk!

  • Acrobat 9.1.3 freezes my computer when I try to send an e-mail with a PDF attachment

    Whenever I have a PDF open and want to send it to anyone via e-mail by clicking on the mail icon in the tool bar, it will open MS Outlook (2003) just fine. I can type whatever message I like and everything seems OK. The problem comes in when I press the "Send" button from Outlook. I get an error message and my computer completely freezes for about 10-15 minutes unless I shut it down before then. This just started happening recently--maybe a few months ago. I have Windows Professional XP and MS Office 2003, as well as Adobe 9.0 Pro (with the updates installed as they became available). I don't know why this is suddenly happening but it is quite maddening. It seems I can only send a PDF by first opening a blank e-mail message and then attaching the PDF, so the convenience of e-mailing a document through Acrobat seems to be a thing of the past. Has anyone else out there experienced this? There were way too many discussions for me to read through, so I'm creating my own here. If anyone can help, I'm open to any ideas or suggestions. Thanks very much.

    I have the same issue and I'm trying to access the link provided for the AOL Community Support. I was able to type my question, but it keeps asking me to provide my date of birth, gender, and my name (for verification purposes). After filling out that little box multiple times, my question has still not been posted to the forum. Also, I was able to use Google Chrome to send email attachments through AOL with no problems.

  • Rx Mail Adapter configuration for Attachment sending and dynamic From/ To

    Hi
    I have a senario in which i have to send a file content as an attachment and then take the values of the from / to /CC from the xml dynamically and post.
    I am able to do it without dynamic
    Do we need to add some modules to do the same.
    RGds
    Aditya

    Hi,
    Check this Weblogs
    Dynamic Mail Address
    /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address
    Triggering Email from folder
    /people/sravya.talanki2/blog/2005/08/18/triggering-e-mails-to-shared-folders-of-sap-is-u
    Mail Adapter options
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure
    <b>Cheers,
    *RAJ*
    *Reward points if found usefull*</b>

  • Has anyone experienced Apple Mail flattening .PSD file attachment when sending?

    One of my students encountered the case when Apple Mail flattens .PSD file when sending an attachment.
    Running latest Mac OS X 10.6.2 (10C540) Mail Version 4.2 (1077). Multi layered .PSD file 120K was saved on desktop and than attached to email. None of the Adobe applications were running at that time. After it was sent, the attached file in Send mail folder was flattened and it size dropped to 88K.
    The flattened file was sent to destination. Although we could not reproduce this problem on the other computers, it always happens on this particular machine.
    When the problem was reported to Apple, the answer from engineers was more disturbing than the problem itself.
    They said "... it is OK to flatten the file to reduce the size of attachment when sending. It is expected email behavior". I am very troubled by this attitude from Apple. Flattening the image discards information contained in individual layers. This is actually EDITING the contents of an attachment when sending it.
    Has anyone experience this problem? Also, I would appreciate feedback on Apple's position that it is OK to edit attachments when sending them withou asking the user first.

    Marian,
    I'm afraid you have missed the point. People send binary files via email all the time: images, video and music clips - in fact any attachment is a binary file. Underlying protocols are implementation details, a mail client may choose any form of encoding/encryption to send an attachment. However, the internet standard requires that an attached file is delivered exactly as it was sent, mail clients/servers are not allowed to take upon themselves to "optimize" attachments without the end user knowledge and permission. It creates a dangerous precedent. In this particular case my photography student had no way of knowing that for whatever reason his particular setup would flatten the image and ruin his homework.
    Also, none of the protocols: FTP, SMTP or HTTP is inherently binary or MIME encoded, it depends on the settings and implementation ( Check RFC's)
    I am not asking for a work around, which is trivial. I am simply trying find how serious is the problem. This is not a normal behavior, I know for certain only about two cases when it happens. With such a rare occurrence it seem to be a bug rather than a feature. That is why Apple reaction to is so surprising.
    Sergei Petrov
    http://spandas.com

  • Attachments send as mail content

    I have experienced the following several times:
    When sending a mail with word or xls file attached, the files are being send as mail content !
    Workaround is to open the attached files, make a bogus change+save and resend--> problem solved.
    Very annoying problem ! Doesn't happen always but when it happens it can be reproduced...
    Related to 10.5.2? (I don't recall to have the same problem under 10.5.1)
    Anyone with simular problems? Solutions?
    Ex:
    --Apple-Mail-4-903560157
    Content-Disposition: attachment;
    filename=persberichtwedstrijd_AGH_15032008v2.doc
    Content-Type: application/octet-stream;
    x-unix-mode=0755;
    name="persberichtwedstrijd_AGH_15032008v2.doc"
    Content-Transfer-Encoding: base64
    0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAPgADAP7/CQAGAAAAAAAAAAAAAAACAAAAzwAAAAAAAAAA
    EAAA0QAAAAEAAAD+////AAAAAM0AAADOAAAA////////////////////////////////////////
    ///////////////////////////////////////////////////////////////////////////s
    pcEAcWATBAAA+BK/AAAAAAAAEAAAAAAABgAA3A0AAA4AYmpianFQcVAAAAAAAAAAAAAAAAAAAAAA
    AAATBBYAF8QAABM6AQATOgEA3AUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD//w8AAAAA
    AAAAAAD//w8AAAAAAAAAAAD//w8AAAAAAAAAAAAAAAAAAAAAAKQAAAAAAMgEAAAAAAAAyAQAAMgE
    AAAAAAAAyAQAAAAAAADIBAAAAAAAAM

    A workaround may be to use Finder's "Crete Archive..." and send the compressed version.

Maybe you are looking for

  • Error message when trying to open pages

    I'm having trouble opening new or existing documents using pages.  I get the error message, "pages cannot be opened because of a problem.  Check with the developer to make sure pages works with this version of Mac OS x.  I've never had this problem b

  • Change file type classification? mkv as "Movie"

    In short, I would like to make mkv files show up under the class of "Movie" in smart folders and such. I'm assuming that buried in some setting or file there is a list of extensions I can add "mkv" to. I would have thought this was a common question

  • Changing URL causes ESS errors

    We have been using hostname urls for our Enterprise Portal servers. We have changed one of our QA servers to use a DNS name url and imported a new SSL cert to match the DNS url. So instead of https://server-name.company.com/irj/portal, we are using h

  • CTS+ in NW 7.2

    Hi, We have going for NW 7.1 in few months for our PI. I have heard that SDM is not there in NW 7.1.  Is it correct? If yes then how CTS+ will work as we have defined the SDM ID and passworin while configuration of CTS+ onout NW 7.0 system at present

  • User preferences reverted back to default - mail gone

    Preferences seem to have gone back to default. I have only 1 user account on my mac. All bookmarks, mail account details, appearence etc have all reverted. The only thing that I have done today that was out of the ordinary was 'organising my fonts' a