Attachment interupts message in body

When my attachment is displayed in the body it breaks up my text message. Half the message will be above the attachment and part will be below. Sometimes the attachment deletes part of my text message. Does anyone know how to correct this.

DanGin,
Please clarify whether you are talking about messages you are composing, or those you receive?
If Composing, and you stop to attach a file, then those files that will View in Place, will do so, right at that point. That will not govern how the recipient sees the message -- their mail client will govern that. In Mail, it is always best to place all attachments last, and do no further typing, after, or between. This is for reason connected to some older Windows based email clients, however, and not for any reasons of clarity.
If while viewing a message you have received, then there is little you can do, except Control-click over the image, and choose View as Icon. This only a temporary option, and does not survive to the next message, or even when that one is later reopened.
More info, please.
Ernie

Similar Messages

  • Send email with Attachment and Message in Body

    Hi All,
    I'm sending an email (Receiver Email Adapter) with a Zipped CSV file as an attachment. I used the following modules to achieve this.
    1     localejbs/AF_Modules/StrictXml2PlainBean                          Local Enterprise Bean     strict2plain
    2     localejbs/AF_Modules/MessageTransformBean                          Local Enterprise Bean     contentType
    3     localejbs/AF_Modules/TextCodepageConversionBean     Local Enterprise Bean     Transform
    4     localejbs/AF_Modules/PayloadZipBean                                               Local Enterprise Bean     zip
    5     sap.com/com.sap.aii.adapter.mail.app/XIMailAdapterBean     Local Enterprise Bean     mail
    Transform     Conversion.charset     ISO-8859-1
    contentType     Transform.ContentDispostion     attachment;
    contentType     Transform.ContentType     text/plain;charset="UTF-8";name="Attachment.csv"
    contentType     Transform.Description     file
    strict2plain     DATA.endSeparator     \r\n
    strict2plain     DATA.fieldSeparator     ,
    strict2plain     fieldNames     Result
    strict2plain     recordTypes     DATA
    zip     zip.filenameKey     contentType
    zip     zip.mode     zipAll
    My problem now is how to put text content in the body? Please help.

    > My problem now is how to put text content in the body? Please help.
    This is not possible with standard.
    You have to write an adapter module for this.

  • FILE- EMAIL with pdf as an attachment and message body.

    I have a scenario where FILE to EMAIL with PDF as an attachment; I also need to send to have Email body with some text. For this i have tried using Mail Package then i wont be receiving any attachment. If I use both Mail package + Keep attachments i do not see any attachments in mail.
    Let me know  the possible ways that can used in the current scenario where i need to send pdf attachment along with messsage body.
    Thanks in advance,
    nik

    Hi Nik
    To get the customized email body you need to use the Mail package. Keep attachments tab should be selected
    Now sending PDF attachment - Do you need to send data passed by File adapter as pdf attachment or File adapter is reading message other than this attachment.
    Case 1. File adapter send message that you need to send as email attachment. Then using mail package use
    <content_type>application/pdf</content_type>
    you can even add name of the file going as an attachment.
    <content_type>application/pdf;name="filename.pdf"</content_type>
    Secondly you can use the MessageTransformBean at communication channel as an additional standard module.
    Case2: You need to pick file from file adapter as attachment. that is possible only when you use NFS with this file you read as source and attachment has be of same name type eg: you read input.txt then attachment has to be input.pdf
    Thanks
    Gaurav
    Edited by: Gaurav Bhargava on Oct 7, 2008 5:46 AM

  • Email is sent correctly, but attachment appears in the body

    Hi,
    I am trying to send emails with attachments in pl/sql.
    I heard it can be done.
    I tried it, the code runs wiithout erros.
    But i cannot see the actual attachment.
    The content of the attachment appears in the body of the email.
    In the email i see this:
    This is an automated email. Please do not reply!
    MIME-Version: 1.0
    Content-Type: multipart/mixed; boundary="-----AABCDEFBBCCC0123456789DE"
    This is a multi-part message in MIME format.
    -------AABCDEFBBCCC0123456789DE
    Content-Type: text/html;US-ASCII
    Content-Transfer-Encoding: base64
    Content-Disposition: attachment; filename="your_file_name.csv"
    SYS,ICOL$,TABLE,2009-06-19 15:35:34
    SYS,I_USER1,INDEX,2009-06-19 15:35:34
    SYS,CON$,TABLE,2009-06-19 15:35:34
    SYS,UNDO$,TABLE,2009-06-19 15:35:34
    SYS,C_COBJ#,CLUSTER,2009-06-19 15:35:34
    SYS,I_OBJ#,INDEX,2009-06-19 15:35:34
    SYS,PROXY_ROLE_DATA$,TABLE,2009-06-19 15:35:34
    SYS,I_IND1,INDEX,2009-06-19 15:35:34
    SYS,I_CDEF2,INDEX,2009-06-19 15:35:34
    SYS,I_PROXY_ROLE_DATA$_1,INDEX,2009-06-19 15:35:34
    SYS,FILE$,TABLE,2009-06-19 15:35:34
    SYS,UET$,TABLE,2009-06-19 15:35:34
    SYS,I_FILE#_BLOCK#,INDEX,2009-06-19 15:35:34
    SYS,I_FILE1,INDEX,2009-06-19 15:35:34
    SYS,I_CON1,INDEX,2009-06-19 15:35:34
    SYS,I_OBJ3,INDEX,2009-06-19 15:35:34
    SYS,I_TS#,INDEX,2009-06-19 15:35:34
    SYS,I_CDEF4,INDEX,2009-06-19 15:35:34
    SYS,IND$,TABLE,2009-06-19 15:35:34
    -------AABCDEFBBCCC0123456789DE--
    The part between the boundry
    (-------AABCDEFBBCCC0123456789DE--) should come as an attachment.
    Code for attachment:
    PROCEDURE R040_attach
    IS
    v_clob clob := empty_clob();
    c_mime_boundary VARCHAR2(256) := '-----AABCDEFBBCCC0123456789DE';
    v_len INTEGER;
    v_index INTEGER;
    BEGIN
    FOR x IN (SELECT *
    FROM all_objects
    WHERE ROWNUM < 20)
    LOOP
    v_clob :=
    v_clob
    || x.owner
    || ','
    || x.object_name
    || ','
    || x.object_type
    || ','
    || TO_CHAR(x.created, 'yyyy-mm-dd hh24:mi:ss')
    || UTL_TCP.crlf;
    END LOOP;
    UTL_SMTP.write_data(c, 'MIME-Version: 1.0' || UTL_TCP.crlf);
    UTL_SMTP.write_data(
    c,
    'Content-Type: multipart/mixed; boundary="' || c_mime_boundary || '"' || UTL_TCP.crlf
    UTL_SMTP.write_data(c, UTL_TCP.crlf);
    UTL_SMTP.write_data(
    c,
    'This is a multi-part message in MIME format.' || UTL_TCP.crlf
    UTL_SMTP.write_data(c, '--' || c_mime_boundary || UTL_TCP.crlf);
    --UTL_SMTP.write_data(c, 'Content-Type: text/html;US-ASCII' || UTL_TCP.crlf);
    --Content-Type: image/jpeg
    UTL_SMTP.write_data(
    c,
    'Content-Type: text/html;US-ASCII'
    || UTL_TCP.crlf
    || 'Content-Transfer-Encoding: base64'
    || UTL_TCP.crlf
    -- Set up attachment header
    UTL_SMTP.write_data(
    c,
    'Content-Disposition: attachment; filename="'
    || 'your_file_name.csv'
    || '"'
    || UTL_TCP.crlf
    UTL_SMTP.write_data(c, UTL_TCP.crlf);
    -- Write attachment contents
    v_len := DBMS_LOB.getlength(v_clob);
    v_index := 1;
    WHILE v_index <= v_len
    LOOP
    UTL_SMTP.write_data(c, DBMS_LOB.SUBSTR(v_clob, 32000, v_index));
    v_index := v_index + 32000;
    END LOOP;
    -- End attachment
    UTL_SMTP.write_data(c, UTL_TCP.crlf);
    UTL_SMTP.write_data(c, '--' || c_mime_boundary || '--' || UTL_TCP.crlf);
    EXCEPTION
    WHEN OTHERS THEN
    RAISE_APPLICATION_ERROR( -20110, 'Dwx0110 - R030 - ' || SQLERRM );
    END R040_attach;
    Any help would be appreciated.
    Thank you.

    This is the forum for Oracle's SQL Developer tool, not for general SQL and PL/SQL questions.
    Questions like this will get a better response in the PL/SQL forum.
    Here is some code I have used to send emails with attachments.
      utl_smtp.open_data(conn);
      utl_smtp.write_data(conn,'Subject:'||subject);
       utl_smtp.write_data( conn, utl_tcp.crlf );
      utl_smtp.write_data( conn, 'Content-Disposition: attachment; filename="attachment"' || utl_tcp.crlf);
        utl_smtp.write_data( conn, 'Content-Transfer-Encoding: base64' || utl_tcp.crlf );
        utl_smtp.write_data( conn, utl_tcp.crlf );
        v_length := dbms_lob.getlength(attachment);
        <<while_loop>>
        while v_offset < v_length loop
          dbms_lob.read( attachment, v_buffer_size, v_offset, v_raw );
          utl_smtp.write_raw_data( conn, utl_encode.base64_encode(v_raw) );
          utl_smtp.write_data( conn, utl_tcp.crlf );
          v_offset := v_offset + v_buffer_size;
        end loop while_loop;
        utl_smtp.write_data( conn, utl_tcp.crlf );
      utl_smtp.write_data(conn,utl_tcp.crlf||utl_tcp.crlf);
      utl_smtp.write_data(conn,content);
      utl_smtp.write_data(conn,utl_tcp.crlf||utl_tcp.crlf);
      utl_smtp.close_data(conn);
    content is a varchar holding the body of the email.
    attachment is a blob holding the attachment.
    Edited by: Jim Smith on Nov 2, 2012 9:24 AM

  • Error while deploying a composite  (Message part "body" is undefined)

    Hi All,
    I am trying to deploy a composite but i am getting the following error.
    Buildfile: C:\Oracle\MiddlewareJdev\jdeveloper\bin\ant-sca-compile.xml
    scac:
    [scac] Validating composite "C:\JDeveloper\mywork\Sample\SampleDequeueBPEL\composite.xml"
    [scac] /C:/JDeveloper/mywork/Sample/SampleDequeueBPEL/Outputftp.wsdl: error: Message part "body" is undefined [element = EmpCollection
         [scac] Setting BPELC option 'classpath' to C:\Oracle\MiddlewareJdev\jdeveloper\jdev\extensions\oracle.sca.modeler.jar;C:\Oracle\MiddlewareJdev\jdeveloper\soa\modules\oracle.soa.fabric_11.1.1\fabric-runtime.jar;C:\Oracle\MiddlewareJdev\jdeveloper\soa\modules\oracle.soa.mgmt_11.1.1\soa-infra-mgmt.jar;C:\Oracle\MiddlewareJdev\oracle_common\modules\oracle.fabriccommon_11.1.1\fabric-common.jar;C:\Oracle\MiddlewareJdev\jdeveloper\soa\modules\oracle.soa.bpel_11.1.1\orabpel.jar;C:\Oracle\MiddlewareJdev\jdeveloper\soa\modules\oracle.soa.mediator_11.1.1\mediator_client.jar;C:\Oracle\MiddlewareJdev\oracle_common\modules\oracle.mds_11.1.1\mdsrt.jar;C:\Oracle\MiddlewareJdev\oracle_common\modules\oracle.adf.model_11.1.1\adfbcsvc.jar;C:\Oracle\MiddlewareJdev\oracle_common\modules\oracle.adf.model_11.1.1\adfbcsvc-share.jar;C:\Oracle\MiddlewareJdev\oracle_common\modules\commonj.sdo_2.1.0.jar;C:\Oracle\MiddlewareJdev\modules\org.eclipse.persistence_1.1.0.0_2-1.jar;C:\Oracle\MiddlewareJdev\oracle_common\modules\oracle.webservices_11.1.1\wsclient.jar;C:\Oracle\MiddlewareJdev\oracle_common\modules\oracle.web-common_11.1.1.jar;;C:\JDeveloper\mywork\Sample\SampleDequeueBPEL\SCA-INF\classes
    [scac] C:\JDeveloper\mywork\Sample\SampleDequeueBPEL\composite.xml:21: error: SCAC-50012
    BUILD FAILED
    C:\Oracle\MiddlewareJdev\jdeveloper\bin\ant-sca-compile.xml:272: Java returned: 1 Check log file : C:\JDeveloper\mywork\Sample\SampleDequeueBPEL\SCA-INF\classes\scac.log for errors
    Total time: 4 seconds
    This is an integration from Dequeue to FTP . Dequeue have a payload of message type which is transformed to Ftp message type. Below is the wsdl file where i am getting error
    <wsdl:definitions
         name="Outputftp"
         targetNamespace="http://xmlns.oracle.com/pcbpel/adapter/ftp/Sample/SampleDequeueBPEL/Outputftp"
         xmlns:jca="http://xmlns.oracle.com/pcbpel/wsdl/jca/"
         xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
         xmlns:tns="http://xmlns.oracle.com/pcbpel/adapter/ftp/Sample/SampleDequeueBPEL/Outputftp"
         xmlns:plt="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
        >
      <plt:partnerLinkType name="Put_plt" >
        <plt:role name="Put_role" >
          <plt:portType name="tns:Put_ptt" />
        </plt:role>
      </plt:partnerLinkType>
        <wsdl:types>
          <schema targetNamespace="http://xmlns.oracle.com/pcbpel/adapter/ftp/Sample/SampleDequeueBPEL/Outputftp"
                  xmlns="http://www.w3.org/2001/XMLSchema" >
            <include schemaLocation="xsd/FileFTP.xsd" />
          </schema>
        </wsdl:types>
        <wsdl:message name="Put_msg">
            <wsdl:part name="body" element="EmpCollection"/>
        </wsdl:message>
        <wsdl:portType name="Put_ptt">
            <wsdl:operation name="Put">
                <wsdl:input message="tns:Put_msg"/>
            </wsdl:operation>
        </wsdl:portType>
    </wsdl:definitions>XSD of FTP:
    <?xml version= '1.0' encoding= 'UTF-8' ?>
    <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
        <xs:element name="EmpCollection">
            <xs:complexType>
                <xs:sequence>
                    <xs:element name="Emp" maxOccurs="unbounded" minOccurs="0">
                        <xs:complexType>
                            <xs:sequence>
                                <xs:element type="xs:string" name="name"/>
                                <xs:element type="xs:byte" name="id"/>
                                <xs:element type="xs:byte" name="dept"/>
                                <xs:element type="xs:string" name="address"/>
                            </xs:sequence>
                        </xs:complexType>
                    </xs:element>
                </xs:sequence>
            </xs:complexType>
        </xs:element>
    </xs:schema>Could someone help me on this. Thanks in advance.
    Thanks
    Gnanaprakasam R

    Gnanaprakasam ,
    Check log file : C:\JDeveloper\mywork\Sample\SampleDequeueBPEL\SCA-INF\classes\scac.log for errorsDid you managed to look into logs.
    Try to reconfigured the ftp adapter from scratch.
    I had ran into same error as yours what i did was, restarted the Jdeveloper and was able to compile !!
    Regards,
    Abhinav Gupta

  • Forms 6i, open default mail client and add attachment to message

    Hi,
    I would like to use some functionality in my forms application. I want call some action, that opens default mail client in windows platform and add some attachment to message. I want to do this for my reports. I am exporting reports to PDF files. I am using oracle forms / reports 6.0.8.12.1 version. And I cant use build-in PDF export functionality, because exported PDF files are in old PDF version and I have problem with Czech charakters. So I am using my own virtual PDF printer for printing reports. A now I would like to send report as mail attachment. I know that there is this functionality in report preview. When I click button with letter image (showed on screenshot at http://img20.imagevenue.com/img.php?image=00067_screen_122_899lo.JPG) the default mail client is opened in this is created new messages with report (eps) in attachment.
    That is what i need. Only open default mail client and add own attachment to message.
    I found only one solution for Outlook, but I need open default mail client (for example Mozilla Thunderbird etc.)
    Can You help me? Or send some solution how it is solved in report previewer?
    Thank you.

    Hi,
    metalink Note 47498.1 "Programmatically Sending a Fax/Email via Microsoft Exchange" may be a good documentation for you. Have a look in there.
    regards,
    Heike

  • Can't attach to message server

    Hi,
    I have just finished a NW EHP1 upgrade successfully, all the instances started ok from the startsap screen, I can login to R3, but I can't get http://host:5000 working, from dev_jcontrol I see errors like: "Can't attach to message server"
    connect (10061: WSAECONNREFUSED: Connection refused)
    I checked dev_ms and /etc/services, the message server port seem defined ok, any clues?
    Thanks,
    Jerry

    HI, How did you resolve the Problem.
    My J2ee angine is not coming aftre a homogeneous system copy. In Dev_jcontrol file I see logs as
    [Thr 01] *  ERROR       The message received isn't from a message server.
                 Are you really connected to the message server?
                 Please check your connection parameters.
                 (de08u1743 / 3901)
    In my dfault profile parameter I see settings as j2ee/ms/port as 3901. Kindly advise

  • Only recently, when I try to open a video or an e-mail attachment, a message pops up in the video frame that says "B

    Only recently, when I try to open a video or an e-mail attachment, a message appears in the frame "Blocked plug-in".  TShan, a box appears above that says I must update and install Flash player.  I have done this six times and still I get the same message.  What am I not doing, or what should I do now to remedy this?

    Kathleen ..
    Check out this thread > safari 6.0 flash problem (blocked plug...: Apple Support Communities

  • OWA freezes went I attempt to attach an attachment to message.

    OWA freezes went I attempt to attach an attachment to message. Firefox will still work but not OWA

    Note that your System Details List shows that you have a user.js file in the profile folder to initialize some prefs on each start of Firefox.
    The user.js file is only present if you or other software has created it, so normally it wouldn't be there.
    you can check its content with a plain text editor if you didn't create this file yourself.
    The user.js file is read each time you start Firefox and initializes preferences to the value specified in this file, so preferences set via user.js can only be changed temporarily for the current session.
    Rename or delete the prefs.js file and possible numbered prefs-##.js files and a possible user.js file to reset all prefs to the default value.
    *http://kb.mozillazine.org/Preferences_not_saved

  • How to get rid of ' Inline attachment ' duplicate message in Email

    Hi ,
    When I got email notification in my personal email. I got twice message as per below.
    Message body start.
    Message body....
    *"inline attachement"* --> I got twice these message.
    *"inline attachement"* ---> I got twice these message
    Message body end.
    Could you please help me how to get riid of these duplicate message.? Any help will be appriciate.
    Thanks
    Raj
    Edited by: RajPatel on Apr 8, 2009 8:37 AM

    This is crazy. I tried syncing the calendar with Entourage only, to see if it made a difference. I got calendar events duplicated as much as 7 or 8 times on both Entourage and the BlackBerry. Make it stop!   Please....?
    After I manually return, once again, to just one calendar event by deleting all the extraneous ones, how can I keep this multiplication of events from happening with each sync?  It's like all the old syncs are still stuck in there and get added to the calendars.  Please help.
    Thanks.

  • Automatically embedding xml attachment content to email body

    hello,
    is there any way to load xml data into outlook body message so it can be display when receiver opens it?
    currently, I cannot define any rule depending on the content of the email.
    and I have to to open the xml attachment and review it to decide if additional action is required or not.
    thanks in advance

    I'm not sure if this helps or not, but give it a try.
    http://www.rondebruin.nl/win/s1/outlook/bmail3.htm
    http://www.rondebruin.nl/win/s1/outlook/bmail2.htm
    Knowledge is the only thing that I can give you, and still retain, and we are both better off for it.

  • Mail in OS X 10.10.2: Removing attachment makes message unreadable

    OS X 10.10.2, Mail 8.2 (2070.6)
    While in previous versions sometimes message attachments were not recognized and could not be removed, this has improved in the actual version.
    Now a new problem arose: Sometimes, removing the message, recodes the text such as it becomes completely unreadable.
    Example:
    嗁テig拆.畕�呴毑h湲�(~�(汏テig瞼.畕�呴毑h湲�(~�(殗邏迁}鴾{���汗靣�散r�,←\�~'�聤萜ig瞏!囤!zf瑲'+⑹�凳&䥽邏 强跰8�]竣iテig� m稛�� 0迠帻4D@《ix��歷g璲�mリ畩��^炘颔�(炞Т�^七岫i\叒靭�.��&z支jg��檗h'甸��葴畫(~炸x~)mz窛欑b簁-蔠��夗 玮�+b?~夗}��~夗}� 殩&電枾⑶帝^y踡高n�_i菬_jhド6、f﹋z,{]底�7鐜6泗W儁娯祥2� ⒐殩X尣僪甪+滩僪甪妢�歠珎)邰踙汳4譀_l�7帝Jm~夗}�$鈾� {�h櫓靭笩jX蔤溗(�*^甔k(曹氣⒏運+n[灥靘u�(b赍妛毦+"电lォ滩侐リ鍔y�h羚f矉-蔠┊*+娷锦�%⒑n畽^奠mu�(b 赍妛┠櫒堀{^娌�-蔠棭z�(潻kz檙~夗}� 殩&電僻睬珘�(枈��弡 �( �Cy霎栙藃曤rョ宝婍r~夗�,拮M)稏爕j+u'湺*'秩硔璿覜{鱩)秄珎)餮啥焉费啥焉潑酲瀝亘焃Z佸ō詾r亘焈旆)^夬-zk(��ア萙ョ^}端奁�� v+l�'fk�5觧���wb~'嗟楝\f枊!j棩k*.恩贝�潑�"vf┙靘�鏱抵環 䦆!j棩k*.伏f曢輭�醳≤x�  b濦�栫瘱)��洬潑�%j��Z娸I�-妷酯蒢怖 矁h甪ゲ枾暕��CTJ藃曕�l�7底Jm~夗}�*袣�&電东ǘ僻睬珘⒆(枈��弡 7毉〆瑙�)j楗蒢怖 矁h甪ゲ枾暕��CTJ藃曕�l�7底Jm~夗}�*袣�&電东ǘ僻睬珘⒆(枈��弡�奼n�欹��%j��2� ⒐殩蔤濾� Q+-蔠�~夗�,拮])碟'钓\婤jX洰*诋③�炈��'旰媆+証=�4醞y2㈢璇*.h畫爣 +拪欹��%j��2� ⒐殩蔤濾�
    The header and the start of the text (some parts removed due to privacy)
    Return-Path: [removed]
    X-CGP-ClamAV-Result: CLEAN
    X-VirusScanner: Niversoft's CGPClamav Helper v1.18.5 (ClamAV engine v0.98.5)
    Received: [removed]
    X-IronPort-Anti-Spam-Filtered: true
    X-IronPort-Anti-Spam-Result: A0AjAwAzXOtUnFfqN51bgkMhdFoEgwS7Z4obAhyBSgEBAQEBARABAQEBAQYNCQkULoQPAQEBAQMSARA KXAIBCA4DBAEBCx0DAgICMBQJCAEBBBMIGogNAQIBrGoBgTxfBYsAAQFvmBQBAQEBAQUBAQEBAQEBAQE ZixOEDBEBVoJpL4EUBZowhUCJGoM+hBBvgQs5fwEBAQ
    X-IPAS-Result: A0AjAwAzXOtUnFfqN51bgkMhdFoEgwS7Z4obAhyBSgEBAQEBARABAQEBAQYNCQkULoQPAQEBAQMSARA KXAIBCA4DBAEBCx0DAgICMBQJCAEBBBMIGogNAQIBrGoBgTxfBYsAAQFvmBQBAQEBAQUBAQEBAQEBAQE ZixOEDBEBVoJpL4EUBZowhUCJGoM+hBBvgQs5fwEBAQ
    X-IronPort-AV: E=Sophos;i="5.09,631,1418079600";
       d="scan'208,217";a="28634691"
    Received:[removed]
    Received:[removed]
    Received:[removed]
    Received:[removed]
    Received: [removed]
    From: [removed]
    To: [removed]
    Subject: [removed]
    Thread-Topic: [removed]
    Thread-Index: AdBMRHx2jNWtUCFcR0iWrwUrE02J6wAEKdCgAMp/94AAAtO3IA==
    Date: Mon, 23 Feb 2015 17:02:48 +0000
    Message-ID: <[email protected]>
    References: <[email protected]>
    <[email protected]>
    <[email protected]>
    In-Reply-To: <[email protected]>
    Accept-Language: da-DK, en-US
    Content-Language: en-US
    X-MS-Has-Attach:
    X-MS-TNEF-Correlator:
    x-originating-ip: [10.87.1.44]
    Content-Type: multipart/alternative;
      boundary="_000_C2FB31364A05CD4C86D4FEBE2FAC02777B3810BFSRVUNIMBX05unia_"
    MIME-Version: 1.0
    Return-Path: [removed]
    X-EOPAttributedMessage: 0
    Received-SPF: None (protection.outlook.com: mbg.au.dk does not designate
    permitted sender hosts)
    Authentication-Results:[removed]
    (message not signed) header.d=none;
    X-Forefront-Antispam-Report:
      CIP:185.45.20.64;CTRY:EU;IPV:NLI;EFV:NLI;SFV:NSPM;SFS:(10009020)(428002)(252514 010)(199003)(189002)(97736003)(107886001)(2656002)(19580405001)(19580395003)(159 75445007)(68736005)(19625215002)(102836002)(87936001)(6806004)(64706001)(2900100 001)(16236675004)(2950100001)(512874002)(2920100001)(105586002)(54356999)(761769 99)(92566002)(106466001)(33656002)(84326002)(5250100002)(101416001)(50986999)(10 4016003)(55846006)(74482002)(450100001)(77156002)(62966003)(110136001)(53416004) (46102003)(19300405004)(7099025);DIR:OUT;SFP:1101;SCL:1;SRVR:VI1PR01MB0846;H:SRV UNIHUB01.uni.au.dk;FPR:;SPF:None;PTR:InfoDomainNonexistent;A:1;MX:1;LANG:en;
    X-Microsoft-Antispam: UriScan:;
    X-Microsoft-Antispam: BCL:0;PCL:0;RULEID:;SRVR:VI1PR01MB0846;
    X-Microsoft-Antispam-PRVS:
      <[email protected]d.exchangelabs. com>
    X-Exchange-Antispam-Report-Test: UriScan:;
    X-Exchange-Antispam-Report-CFA-Test:
      BCL:0;PCL:0;RULEID:(601004)(5005003);SRVR:VI1PR01MB0846;
    X-Forefront-PRVS: 0496DF6962
    X-Exchange-Antispam-Report-CFA-Test: BCL:0;PCL:0;RULEID:;SRVR:VI1PR01MB0846;
    X-OriginatorOrg: mbg.au.dk
    X-MS-Exchange-CrossTenant-OriginalArrivalTime: 23 Feb 2015 17:02:49.7593
    (UTC)
    X-MS-Exchange-CrossTenant-Id: 61fd1d36-fecb-47ca-b7d7-d0df0370a198
    X-MS-Exchange-CrossTenant-OriginalAttributedTenantConnectingIp: TenantId=61fd1d36-fecb-47ca-b7d7-d0df0370a198;Ip=[185.45.20.64]
    X-MS-Exchange-CrossTenant-FromEntityHeader: HybridOnPrem
    X-MS-Exchange-Transport-CrossTenantHeadersStamped: VI1PR01MB0846
    --_000_C2FB31364A05CD4C86D4FEBE2FAC02777B3810BFSRVUNIMBX05unia_
    Content-Type: text/plain; charset="utf-8"
    Content-Transfer-Encoding: base64
    RGVhciBHdW50ZXIsDQoNClRoYW5rIHlvdSBmb3IgZ2V0dGluZyBpdCBkb25lIHNvIHF1aWNrbHkg
    ZGVzcGl0ZSB5b3VyIGZsdS4NCg0KQmVybnQNCg0KRnJvbTogR3VudGVyIEJhY2tlcyBbbWFpbHRv
    OmdiYWNrZXNAdW5pLWthc3NlbC5kZV0NClNlbnQ6IDIzLiBmZWJydWFyIDIwMTUgMTc6NDENClRv
    OiBCZXJudCBHdWxkYnJhbmR0c2VuDQpDYzogQmluaywgTWFyY287IEx1YyBKYW5zcw0KU3ViamVj
    dDogUmU6IHJldmlldyBvbiBCaWxhbCdzIHRoZXNpcw0KDQpEZWFyIEJlcm50LCBkZWFyIE1hcmNv
    IGFuZCBMdWMsDQoNCmFzIHByb21pc2VkLCBteSBkcmFmdCBmb3IgdGhlIHJlY29tbWVuZGF0aW9u
    Lg0KDQpDaGVlcnMNCg0KR3VudGVyDQoNCkd1bnRlciBCYWNrZXMNCihQcm9mZXNzb3IpDQpVbml2
    ZXJzaXTDpHQgS2Fzc2VsDQpGQjExIC0gw5Zrb2xvZ2lzY2hlIEFncmFyd2lzc2Vuc2NoYWZ0ZW4N
    Ck5vcmRiYWhuaG9mc3RyYcOfZSAxYQ0KMzcyMTMgV2l0emVuaGF1c2VuDQpUbGYuOiAoMDU1NDIp
    IDk4LTExNDANCmVNYWlsOiBnYmFja2VzQHVuaS1rYXNzZWwuZGU8bWFpbHRvOmdiYWNrZXNAdW5p
    LWthc3NlbC5kZT4NCg0K

    I've used the "remove attachments" feature regularly for years. No problem. Got on Yosemite and now... getting this mess.
    I'm using IMAP so I think... just access my mail via webmail or another device. Wrong. The message is ruined for all time there too.
    This is business-related email. In some cases a legal record of a conversation is now lost.
    In the graphics / video business, leaving all attachments in my email account is not an option.
    One Helpful Tip:
    You can still view the text of the original message by going to View > Message > Raw Source.
    V5k

  • Printing name of attachment in e-mail body

    I'm looking for a way to print the file name of an attachment that arrives in the Mail app. We can print the attachment and the email but the name of the attachment is not printed.

    Hello, and welcome to the Discussions.
    Do you mean routinely, or for one special message?
    Ernie

  • NullPointerException - Create New Attachment to Message Payload

    in PI 7.1, I am trying to add a new attachment to the Message using the following code.
    A NullPointerException is recieved when statement <msg.addAttachment(text);> is executed.
    Message msg = (Message) inputModuleData.getPrincipalData();
    TextPayload text = msg.createTextPayload();
    text.setContentType("text/plain;filename=\"Instrucoes.txt\"");
    text.setContent(message.getBytes("UTF-8"));
    text.setText("Set Text");
    text.setDescription("Set Description");
    text.setName("Set Name");
    msg.addAttachment(text);
    Has anybody experienced this problem? Or have any clues to what is causing the problem.
    Thanks,
    Tijo

    Yes. Even with the following statement to build up the new payload. It is undefined causing NullpointerException.
    TextPayload text = msg.createTextPayload();
    text.setContentType("text/plain;filename=\"Instrucoes.txt\"");
    text.setContent(message.getBytes("UTF-8"));
    text.setText("Set Text");
    text.setDescription("Set Description");
    text.setName("Set Name");

  • T440s - "Incorrect AC adapter is attached" error message

    Hi
    I have suddenly started getting an error message saying:
    "Incorrect AC adapter is attached.
    The AC adapter may not provide enough power to your Lenovo computer. Please reconnect proper AC adapter. To buy additional AC adapter, click here"
    I am using the shipped power adapter and haven't had any problems previously. However the strange thing is that the machine charges when it is off. It is only when it is on that it won't charge so I assume this means it is a software problem rather than hardware?
    Any help would be much appreciated as I would love to be able to fix this myself rather than go to Lenovo who already had the computer for 3 months befoe they could fix the last problem... 
    Thanks

    Hi waynelongdon
    To give some more background, I purchased my computer in New Zealand and never had any problems but I subsequently moved to Chile and the problem was occurring intermittently in Chile. I took it to Lenovo Chile and they advised me that the AC Adaptor I was using was not big enough and was not certified to be used with the T440s. (This is despite it being the original AC adaptor that was shipped with the new unit). The original AC Adaptor supplied was a 45W Lenovo Adaptor model ADLX45NDC3A. Lenovo in Chile replaced it with a larger 90W Lenovo AC Adaptor model ADLX90NCC2A. This has fixed the problem.
    I never quite got to he bottom of why Lenovo in Chile thought that the adaptor supplied in NZ wasn't certified to be used with the T440S. 
    As the problem wasn't occurring at every outlet I plugged into in Chile I can only guess that potentially the power supply throughout Chile (or maybe it is building to building) is not completely standard and some outlets were giving out more power than others? (Both NZ & Chile use 230v mains electricity). But I have absolutely no knowledge or education in electricity so it could just as easily be something completely different.
    Good luck.

Maybe you are looking for