Attachment name in Outlook is ok, see on Exchange always named "body"

Hi,
I'm using the SMTP adapter to send emails in my organization.
Last week a guy come to talk to me, because the file attached to the email sent to biztalk (2006 R2) has different names when looking from Outlook and when looking from the webmail (Exchange). It seems that this is important to the organization.
I've searched in this forums, and get some information, but none of that information found solve my issue.
This is how i'm setting the file name:
Message(FILE.ReceiveFileName) = "test.txt";
Message(MIME.FileName) = "test.txt";
Does anyone get this "error"? Any suggestions to solve this?
Thanks in advance
Ricardo Bessa

What I had done was
Create a Multi-part Message with two parts, 1 (marked as body) of type "RawStringFormat" and the second of type "RawString".
The reason for using RawString was because string is still converted into XML as <string></string> on output. So when I assigned HTML it still came with the base tags causing the e-mail readers to not understand and render it correctly. The RawString
Formatter (BizTalk SDK Samples) ensured that content were sent as is.
In the message construct shape I had the code as below
// This is where we construct the "body" part of the message
MessageBody = "<HTML>...... your message body ...... </HTML>";
MyMultiPartMessage.BodyPart = new Microsoft.Samples.BizTalk.XlangCustomFormatters.RawString(UnparsedMessageAlertBody);
MyMultiPartMessage.BodyType(Microsoft.XLANGs.BaseTypes.ContentType) = "text/html";
// Handle the attachment
XMLAttachment = new System.Xml.XmlDocument();
XMLAttachment = MyBizTalkMessage;
AttachmentAsText = XMLAttachment.OuterXml;
MyMultiPartMessage.Attachment = new Microsoft.Samples.BizTalk.XlangCustomFormatters.RawString(AttachmentAsText);
MyMultiPartMessage.Attachment(Microsoft.XLANGs.BaseTypes.ContentType) = "text/plain";
MyMultiPartMessage.Attachment(MIME.FileName) = "Whatever Filename you want".txt;
// Set the Message Subject
MyMultiPartMessage(SMTP.Subject) = "Whatever subject you want";
// Set the message SMTP Properties
MyMultiPartMessage(SMTP.EmailBodyFileCharset) = "UTF-8";
MyMultiPartMessage(SMTP.MessagePartsAttachments) = 2;
MyMultiPartMessage(SMTP.From) = <sender address>;
MyMultiPartMessage(SMTP.SMTPHost) = <your relay or smart host>;
MyMultiPartMessage(SMTP.SMTPAuthenticate) = 0;
MyMultiPartMessage(SMTP.DeliveryReceipt) = false;
MyMultiPartMessage(SMTP.ReadReceipt) = false;
// Dynamic Ports requirements
MessageTransmissionPort(Microsoft.XLANGs.BaseTypes.Address) = <destination e-mail address>;
MessageTransmissionPort(Microsoft.XLANGs.BaseTypes.TransportType) = "SMTP";
The result message did not result in any additonal body (both in Outlook and OWA [which is the closest I got to Office 365]). You may try playing around with the "Attachment" Content-Type as appropriate.
Regards.

Similar Messages

  • "Check Names: Microsoft Outlook does not recognize '1. double click the attachment'" submit error

    I have seen this question/issue on multiple forums and nobody seems to have an answer/fix yet.  I included an e-mail submit button for my form, and when I practice submitting, everything sends fine.  However, if I distribute the form (to allow for tracking, etc.) I get an error pop-up window that reads "Check names"  "Microsoft Outlook does not recognize '1. double click the attachment'".  What I mostly don't understand is "1. double click the attachment" is part of the directions/content in the e-mail after they actually, successfully submit the form.  Why is the content auto-populating as part of the mailing address??  After you "Show More Names" and search for the correct recipient(s), you have the same error pop-up again with the 2nd step that's show in the content of the e-mail: "2. Acrobat will prompt you to select a responses file", until you select the recipients again by clicking "show more names".  Then the e-mail populates, with "Completed Form&body=Instructions to add this form to a responses file: [email protected]?subject=Submitting" as a recipient, as well as the 2 recipients you had to search for.
    Does anybody know why this happens and how to fix it!?

    We are having the same issue of trying to send a Shared Review from Adobe Pro XI and getting a error. We are currently using Outlook 2010. Hope someone from Adobe support can answer this issue and other Shared Review issues that are related in nature.

  • Why did Acrobat Pro X slow down attaching pdfs in Outlook 2003?

    I've unfortunately joined the club of slooooow attaching pdfs to Outlook 2003 after installing Acrobat Pro X.
    I can send any attachment other than a pdf to Outlook 2003 and it sends instantly/normally. Since installing Acrobat Pro X 10.1.0 there's an instant lag as soon as I click the pdf to attach it. Outlook appears to freeze for several minutes and during this time I can work in other programs. Then all of a sudden, everything is normal and I can send the email, with pdf attached like normal.
    I'm running Windows XP, Service pack 3 and everything else in the 5.5 suite is working fine.
    There was some discussion in the Reader forum regarding the subject but I wasn't sure if the fixes described would apply to the full Acrobat program.

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • EWS Attachment Name Incorrect

    We are encountering an issue with EWS 2.2 Managed API(and previous versions) and attachment names.  EWS exposes two potential fields for an attachment name.  Name, and FileName.  In our findings, Name can sometimes report the same file name
    we see in mail clients (such as Outlook), and FileName is always black (Nothing in VB.NET).
    The XML request and responses are output from the "ExchangeService.TraceEnabled = True" and "ExchangeService.TraceFlags = TraceFlags.All" options.
    XML request example:
    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Header>
    <t:RequestServerVersion Version="Exchange2010_SP2" />
    </soap:Header>
    <soap:Body>
    <m:GetItem>
    <m:ItemShape>
    <t:BaseShape>IdOnly</t:BaseShape>
    <t:AdditionalProperties>
    <t:FieldURI FieldURI="item:Attachments" />
    </t:AdditionalProperties>
    </m:ItemShape>
    <m:ItemIds>
    <t:ItemId Id="biglongItemId" />
    </m:ItemIds>
    </m:GetItem>
    </soap:Body>
    </soap:Envelope>
    EWS XML response:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
    <s:Header>
    <h:ServerVersionInfo MajorVersion="14" MinorVersion="3" MajorBuildNumber="195" MinorBuildNumber="1" Version="Exchange2010_SP2" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types" xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" />
    </s:Header>
    <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <m:GetItemResponse xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
    <m:ResponseMessages>
    <m:GetItemResponseMessage ResponseClass="Success">
    <m:ResponseCode>NoError</m:ResponseCode>
    <m:Items>
    <t:Message>
    <t:ItemId Id="biglongItemId" ChangeKey="CQAAABYAAAB6Lqmbg0p2SpXlhlOVcY4TAAAnDxiX" />
    <t:Attachments>
    <t:FileAttachment>
    <t:AttachmentId Id="biglongAttachmentId" />
    <t:Name>body.csv</t:Name>
    <t:ContentType>text/plain</t:ContentType>
    <t:ContentId>{6981D03B-2EBD-4F8F-BF8D-61424696F792}</t:ContentId>
    <t:Size>135</t:Size>
    <t:LastModifiedTime>2014-01-03T02:13:44</t:LastModifiedTime>
    <t:IsInline>false</t:IsInline>
    <t:IsContactPhoto>false</t:IsContactPhoto>
    </t:FileAttachment>
    </t:Attachments>
    </t:Message>
    </m:Items>
    </m:GetItemResponseMessage>
    </m:ResponseMessages>
    </m:GetItemResponse>
    </s:Body>
    </s:Envelope>
    In the example above, Name is body.csv.  FileName as nothing.  In Outlook, the attachment file name is "CUSTOMER.CSV".
    I have confirmed with the sender that file attachment file is named "CUSTOMER.CSV".
    Can anyone provide some insight into why EWS reports a file name that is not what was provided by the sender?
    Thanks much in advance.

    The FileName property is a Managed API property used to create attachments. You set this property on a FileAttachment object when creating a new attachment, and the API will load the contents from the file. It has no meaning when you are retrieving attachments
    from the server. When retrieving, the only information you have is the Name.
    In the Exchange store, there are a number of properties on attachments related to the name. For example, there is PidTagDisplayName, PidTagAttachFileName, and PidTagAttachLongFileName. EWS uses PidTagDisplayName, which is usually the same as PidTagAttachLongFileName.
    However, it *can* be different. Outlook appears to use PidTagAttachLongFileName in their UI. So most likely for this message, the PidTagDisplayName value is "body.csv", and PidTagAttachLongFileName is "CUSTOMER.CSV". You can check with
    a MAPI viewer (MFCMapi or OutlookSpy).

  • Need to get the Mail attachment name as it is to the receiver file adapter

    I am doing a Mail to File scenario. I need to get the attachment from the mail and store it on the file server. I am using the PayloadSwap bean in the sender mail adapter. My requirement is to carry forward the attachement name as it is to the receiver file adapter side and store the file with the same name.
    Did any one try doing this? I was looking at developing an adapter module but got struck as I could not find whether the attachement name is stored in the XI payload after it has got swapped using the swap bean.
    Any help would be appreciated.
    VJ

    Oops pressed the send key. Take two.
    This is becoming a damn nightmare. When I run the adapter I am getting ModuleExceptions. Can you pass your eyes over these Java config settings to see what I am doing wrong. Using NWDS CE 7.1 with PI 7.1 both at SP07. All the imports were taken from PI 7.1 after SP07 was applied. The build id of NWDS is
    SAP NetWeaver Developer Studio
    SAP NetWeaver 7.1 Composition Environment SP07 PAT0001
    Build id: 200901152336
    APPLICATION.XML
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE application PUBLIC "-//Sun Microsystems, Inc.//DTD J2EE Application 1.3//EN"
    "http://java.sun.com/dtd/application_1_3.dtd">
    <application>
    <display-name>MailPOP_EAR</display-name>
    <description>EAR description</description>
    <module>
    <ejb>MailPOP_EJB.jar</ejb>
    </module>
    </application>
    APPLICATION-J2EE-ENGINE.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE application-j2ee-engine SYSTEM "application-j2ee-engine.dtd">
    <application-j2ee-engine>
    <reference reference-type="hard">
    <reference-target provider-name="sap.com" target-type="service">engine.security.facade</reference-target>
    </reference>
    <reference reference-type="hard">
    <reference-target provider-name="sap.com" target-type="library">engine.j2ee14.facade</reference-target>
    </reference>
    <reference reference-type="hard">
    <reference-target provider-name="sap.com" target-type="service">com.sap.aii.af.svc.facade</reference-target>
    </reference>
    <reference reference-type="hard">
    <reference-target provider-name="sap.com" target-type="interface">com.sap.aii.af.ifc.facade</reference-target>
    </reference>
    <reference reference-type="hard">
    <reference-target provider-name="sap.com" target-type="library">com.sap.aii.af.lib.facade</reference-target>
    </reference>
    <reference reference-type="hard">
    <reference-target provider-name="sap.com" target-type="library">com.sap.base.technology.facade</reference-target>
    </reference>
    <fail-over-enable mode="disable" />
    </application-j2ee-engine>
    EJB-J2EE-ENGINE.XML
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE ejb-j2ee-engine SYSTEM "ejb-j2ee-engine.dtd">
    <ejb-j2ee-engine>
    <enterprise-beans>
    <enterprise-bean>
    <ejb-name>GetMailAttachment</ejb-name>
    <jndi-name>GetMailAttachment</jndi-name>
    <session-props/>
    </enterprise-bean>
    </enterprise-beans>
    </ejb-j2ee-engine>
    EJB-JAR.XML
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans
    2.0//EN"
    "http://java.sun.com/dtd/ejb-jar_2_0.dtd">
    <ejb-jar>
    <description>EJB JAR description</description>
    <display-name>EJB JAR</display-name>
    <enterprise-beans>
    <session>
    <ejb-name>GetMailAttachment</ejb-name>
    <home>com.sap.aii.af.lib.mp.module.ModuleHome</home>
    <remote>com.sap.aii.af.lib.mp.module.ModuleRemote</remote>
    <local-home>com.sap.aii.af.lib.mp.module.ModuleLocalHome</local-home>
    <local>com.sap.aii.af.lib.mp.module.ModuleLocal</local>
    <ejb-class>sample.GetMailAttachment</ejb-class>
    <session-type>Stateless</session-type>
    <transaction-type>Container</transaction-type>
    </session>
    </enterprise-beans>
    </ejb-jar>
    SENDER MAIL ADAPTER modules
    1 AF_Modules/PayloadSwapBean Local EB 1
    2 GetMailAttachment Local EB 2
    3 sap.com/com.sap.aii.adapter.mail.app/XIMailAdapterBean Local EB 3
    1     swap.keyName          payload-name
    1     swap.keyValue          MailAttachment-1
    RECEIVER FILE MODULES
    1     localejbs/AF_Modules/DynamicConfigurationBean     Local Enterprise Bean     1
    2     localejbs/CallSapAdapter                    Local Enterprise Bean     2
    1     key.0          write http://sap.com/xi/XI/System/File FileName
    1     value.0          message.interface
    VARIABLE FILENAME SUBST WITH ASMA TURNED ON
    fName     message:interface_name
    JAVA SOURCE
    package sample;
    import javax.ejb.CreateException;
    import javax.ejb.SessionBean;
    import javax.ejb.SessionContext;
    import com.sap.aii.af.lib.mp.module.Module;
    import com.sap.aii.af.lib.mp.module.ModuleContext;
    import com.sap.aii.af.lib.mp.module.ModuleData;
    import com.sap.aii.af.lib.mp.module.ModuleException;
    import com.sap.engine.interfaces.messaging.api.Message;
    import com.sap.engine.interfaces.messaging.api.MessagePropertyKey;
    import com.sap.engine.interfaces.messaging.api.TextPayload;
    import com.sap.engine.interfaces.messaging.api.XMLPayload;
    import com.sap.aii.af.service.cpa.Channel;
    @ejbHome <{com.sap.aii.af.lib.mp.module.ModuleHome}>
    @ejbLocal <{com.sap.aii.af.lib.mp.module.ModuleLocal}>
    @ejbLocalHome <{com.sap.aii.af.lib.mp.module.ModuleLocalHome}>
    @ejbRemote <{com.sap.aii.af.lib.mp.module.ModuleRemote}>
    @stateless
    <code>GetMailAttachment</code>
    @SuppressWarnings("unused")
    public class GetMailAttachment implements SessionBean, Module {
         private static final long serialVersionUID = 7612238514043673502L;
         private SessionContext myContext;
         private MessagePropertyKey myFileName;
         public void ejbRemove() {
         public void ejbActivate() {
         public void ejbPassivate() {
         public void setSessionContext(SessionContext context) {
              myContext = context;
    @throws CreateException
         public void ejbCreate() throws CreateException {
         public void getMessageProperty(MessagePropertyKey FileName) {
              myFileName = FileName;
    @param moduleContext
               Contains data of the module processor that might be important
               for the module implementation such as current channel ID
    @param inputModuleData
               Contains the input XI message as principal data plus eventual
               set supplemental data
    @return ModuleData Contains the (changed) output XI message. Might be the
            response message if the module is the last in the chain.
    @exception ModuleException
                   Describes the cause of the exception and indicates whether
                   an retry is sensible or not.
         @SuppressWarnings("deprecation")
         public ModuleData process(ModuleContext moduleContext,
                   ModuleData inputModuleData) throws ModuleException {
              try {
                   Message msg = (Message) inputModuleData.getPrincipalData();
                   TextPayload payload = msg.getDocument();
                   String contentType = payload.getContentType();
                   // Content Type could be something like
                   // text/plain;charset="UTF-8";name="file.txt"
                   contentType = contentType.replaceAll("\"", "");
                   int i = contentType.lastIndexOf("=") + 1;
                   String fileName = contentType.substring(i);
                   msg.setMessageProperty(myFileName, fileName);
                   inputModuleData.setPrincipalData(msg);
              } catch (Exception e) {
              return inputModuleData;
    JAVA ERRORS
    2009-02-04 11:41:14     Information     Mail: calling the module processor for channel LMK_Common_Mail_Sender
    2009-02-04 11:41:14     Information     Swap: swapping by payload-name ? MailAttachment-1
    2009-02-04 11:41:14     Information     Swap: successfully swapped
    2009-02-04 11:41:14     Information     Mail: message leaving the adapter (call)
    2009-02-04 11:41:14     Information     The application tries to send an XI message asynchronously using connection AFW.
    2009-02-04 11:41:14     Information     Backward validation is enabled
    2009-02-04 11:41:14     Error     Unable to validate the message with message ID 8702df71-f254-11dd-9b9b-001a64a73518
    2009-02-04 11:41:14     Error     Returning to application. Exception: com.sap.engine.interfaces.messaging.api.exception.MessagingException: Content is not allowed in prolog.
    2009-02-04 11:41:14     Error     Mail: error occured: com.sap.engine.interfaces.messaging.api.exception.MessagingException: Content is not allowed in prolog.
    2009-02-04 11:41:14     Error     Mail: error occured: com.sap.aii.af.lib.mp.module.ModuleException

  • How to disable attachment preview in Outlook 2013 - group policy

    How do I disable attachment preview in Outlook 2013 in GPO?

    Hi,
    We may follow the steps below to disable attachment preview in Outlook 2013:
    1. Download
    Office 2013 Administrative Template files, and then follow the instructions in the "Loading the ADMX templates" section of the
    Use Group Policy to enforce Office 2010 settings article to load the ADMX templates.
    2. Navigate to User Configuration > Administrative Templates > Microsoft Outlook 2013 > Outlook Options > Preferences > Email Options
    3. Double-click Do not allow attachment previewing in Outlook from the right pane.
    4. Select Enable bullet.
    5. Click OK.
    6. Run gpupdate /force command to force an update of GPO settings.
    7. Start Outlook and you should see the attachment previewing feature is disabled.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Change attachment name using mail adapter

    Hi All,
    I have a problem changing the attachment name in my scenario. I use Mail scenario to send a pdf Attachment from R/3 to email address. Everything working fine except the attachment name that becoming untitled.pdf and untitled.txt.
    Communication Channel setting :
    message protocol : xipayload
    transport protocol : smtp
    checked use mail package
    checked keep attachment
    I have use MessageTransformBean in my receiver adapter, but no luck. It was produce an error.
    anyone have an idea to solve my problem?
    thx,
    Robby

    Hi,
    You need to go to the Module tab of the Mail adapter receiver communcation channel and give the parameter as Transform.contentDisposition and its value as attachment ( since you needed the output to be sent as an attachment) and give the name of the attachment as you required.
    Please see the help page : [http://help.sap.com/saphelp_nw04/helpdata/en/57/0b2c4142aef623e10000000a155106/frameset.htm] for more details and more options of the parameters.
    Regards,
    Kalpana.

  • Problem: Original Attachment Name from SOAP Sender changes to attachment-1

    Hi everybody,
    we have a scenario where a SOAP sender receives a xml message describing several documents. Each document has a mime type and a file name, size, md5 checksums etc as attributes.
    The documents are send as attachments with the same Web service in SWA(SOAP with attachment style).
    The web service calls an ABAP proxy provider class in a R/3 backend.
    The ABAP proxy class will save the attached documents for further processing and must use the original document names.
    At the soap communication channel monitoring(Java Stack) we still see the original attachment names in the message content tab.
    At the Integration Server(sxmb_moni) the attachment name changes to attachment-1, attachment-2 and so on.
    Using the method
    IF_AI_ATTACHMENT ->GET_DOCUMENT_NAME
      in the provider ABAP proxy class returns the name attachment-1.
    We can see that there is a mapping of the new attachment-1 name to the old, original name in the manifest section of this message on the Integration server.
    Is there a way to access the manifest section at a provider ABAP proxy class?  Or otherwise a PI configuration setting to preserve the original attachment names.
    Thanks a lot,
    Heiko
    => PI 7.1 SP9

    Hi Stefan,
    (I was hoping you would find that thread ...)
    I see a good reason why the attachment names are changed as the PI message protocol sends the main document as an attachment as well. So no problem with that because the information of the mapping old to new names still exists in the manifest part and is visible at the sxmb_moni.
    We see a manifest part like this (Sorry cant post the whole xml doc as the formatting for longer messages isn't working in the forum)
    <SAP:Payload xlink:href="cid:4cc43edd-839f-423f-b7c6-7e44294d663a_sig.p7m">
      <SAP:Name>attachment-1</SAP:Name>
      <SAP:Description>attachment</SAP:Description>
      <SAP:Type>ApplicationAttachment</SAP:Type>
    </SAP:Payload>
    The (red) cid entry is the original file name. This manifest is from the sxmb_moni in the r/3 backend. So all the information is there..  The question is how to retrieve this information .. Any idea?
    Best Regards,
    Heiko Bergmann

  • Acrobat 9: Auto-Populate Subject line with Attachment Name

    Hello,
    I am trying to auto-populate the subject line of an email with the .pdf attachment name. I don't care either way if this functionality is available or not. I just need a difinitive yes or no answer. And, of course, if yes I need to know how to do it. Email client is Outlook 2007.
    Thanks in Advance,
    Matt

    In that case, I don't believe so.
    You could set up in Acrobat a custom menu item or toolbar button that uses the doc.mailDoc JavaScript method, which is able to set the subject line text. The script could get the current file name and set the subject of the email to the same. More information here: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.505.html

  • DeliveryService attachment name is "ReportData", need extension ".pdf"

    Hi All,
    We are using the BI Web Service deliveryService to email reports. We are running the report using runReportand setting the attributeFormat to pdf. We take the results from that and call the deliveryService. We set the contentType to 'application/pdf' and set the documentData to the results of the runReport call. The email comes in fine but the attachment name is "reportData". Is there a way to specify the attachment name (the report name would be great) and more importantly is to append the ".pdf" extension to the name?
    Thank you
    Rudy

    Yahoo probably made a change to their web mail page that conflicts with Safari. Check your Safari preferences in the Security area. Next to Web Content, are Enable Java and Enable JavaScript checked?
    Have you tried using FireFox or Camino, to see if the problem exists in another browser?

  • Why cfpop can't recv attachment fm ms outlook ???

    My company is using Coldfusion's Email System over 3 yrs, but
    using <cfx_pop3> recv email as <cfpop> hv some problem
    on receiving email, but <cfx_pop3> hv one problem, if
    attachment's name contain "Chinese" character, it's name will
    become "monster"
    Recently, my pc installed Coldfusion 8 Developer version, try
    to use <cfpop> again & found that hv no problem on
    receiving Chinese name attachment
    But don't know why can't get attachment fm ms outlook as
    other mail tools (eg. Coldfusion Email System, Outlook Express,
    Hotmail & Gmail) hv no this problem ???
    hv any idea ???
    Tks !!!

    TravelGirlTwoPointOh wrote:
    I've searched for this topic, but can't understand all the tech-speak! I'm in my 20s, so I'm not dumb, just not in the loop. Someone break this down for me in layman's terms.
    It sounds like gmail has serious problems with MIME data. That isn't something it should have trouble with. It has been solved for a long, long time now.
    Even when I hit "View as text," it doesn't make any sense. I'll paste a copy below. Can someone please tell me what application to open up MIME files in?
    Ordinarily, your e-mail program.
    I have a program I used to sell years ago when people started sending MIME e-mail messages that AOL couldn't understand. Perhaps I should update it if all the world is switching to gmail and gmail doesn't handle MIME either. 1996 is here again.
    Anyway, click here to download it.
    Technically this is a shareware program and technically I could make money from it. But very few people need this program anymore and it should work just fine for you in "demo" mode.

  • Use attachment name as email subject

    I found a great workflow posted up here that will let you compress and email a selected file/folder in the finder. I wanted to see if someone knows of a way to add a function or a command in the workflow that tells it to use the attachment name as the Subject in the email. Thanks!

    I have a Get Names of Finder Items action on my iDisk that will get file names (you can also use a Run AppleScript action to accomplish the same thing). An Example workflow would be:
    1) *Get Selected Finder Items*
    2) *Create Archive* -- putting this action here will archive multiple selections
    3) *Set Value of Variable* { Variable: Attachment } -- this will be the attached archive
    4) *Get Names of Finder Items* { Name: Basename.Extension }
    5) *Set Value of Variable* { Variable: Name } -- this will be the Subject name
    6) *Get Value of Variable* { Name: Attachment } (Ignore Input) -- get the attachment
    7) *Sort Finder Items* -- this just makes sure the next action sees files and not text
    8) *New Mail Message* (drag Name variable to the Subject line)

  • Issue parsing multiline attachment name when using ISO-2022-JP

    Hi,
    while getting the filename from Header, the attachment name truncates and is incomplete.
    The name ends up "Net Line Dancer" instead of parsing the whole content.
    Please help.
    Content-Type: application/x-zip-compressed; name="Net Line Dancer
    =?ISO-2022-JP?B?GyRCISIbKEJNYW5hZ2UgRW5naW5lGyRCSGYbKEI=?=
    =?ISO-2022-JP?B?GyRCM1M5YExcGyhCLnppcA==?="
    Content-Disposition: attachment; filename="Net Line Dancer
    =?ISO-2022-JP?B?GyRCISIbKEJNYW5hZ2UgRW5naW5lGyRCSGYbKEI=?=
    =?ISO-2022-JP?B?GyRCM1M5YExcGyhCLnppcA==?="
    Content-Transfer-Encoding: base64

    I guess you are in the wrong forum, as i see no relation to Oracle forms.

  • Define attachment name for PDF document using ABAP class CL_BCS

    Hi,
    I am using the ABAP class CL_BCS to send an email with a PDF attachment. The issue I have is that although I am specifying the attchment name when receiving the email the attachment is called 'MESSAGE'PDF'.
    I can view the attachment in SOST and the correct attachment name appears.
    I need to use this class as I am sending multiple attachments, whereas the FM only allows 1 attachment .
    Has anyone had this issue before with a PDF attachment.
    Thanks
    Martin

    Hi Hasan,
    I have similar requirement. I see your post is pretty old and hope you would have found the solution at that time.
    Could you please share it with me?
    Thanks
    Puneet

  • Any way to see ios exchange email user picture like in outlook on my iphone?

    Any way to see ios exchange email user picture like in outlook on my iphone?

    There are 2 ways that the contacts are being pulled down to your phone/tablet with Exchange.  Your personal contacts (those created in Outlook) will pull down any picture that you have uploaded to it (be cautious of the file size on these as the initial sync will take a long time to pull these down) - and it appears nicely for caller ID and such.
    If you are talking about the Global Address Book lookup - this is a setting that is in both Exchange and AD that could be preventing this.  Our company has turned this off for privacy concerns - and they have restricted the size limits on the pictures (this was overloading some of the other collaboration clients for those that had numerous people in their groups - like Lync or SharePoint).
    We have suggested that people who want pictures of co-workers create a personal contact card for them and attach them there.  We are using Exchange 2010 SP3 in this scenario.

Maybe you are looking for