AOL stripping pdf from "multipart/alternative" text email

Hi! I am using MYOB AccountEdge and it has a function within the program to send out statements as pdf attachments to a text email. As of the beginning of this year, AOL is stripping off the pdf attachment, but the text email goes through. Last year, no problem - the attachments were received.
I can send the attachment to the AOL accounts successfully if I attach it to a new text mail message from the mac Mail program.
In examining the Long Headers, it appears the only difference, I can see is that the email where the pdf attachment is stripped is "multipart/alternative" and the email where is goes through is "multipart/mixed".
As the MYOB program seems to send through Mail, at least the sent message shows up in the Sent folder, is there a way to force "multipart/mixed" through a command in Terminal? Or do I need to continue to do battle with MYOB?
Anyone else having pdf's stripped when sending a "multipart/alternative" text email to AOL?
Thanks for any help/ideas.
Peter Truce

Thanks for the help, Ernie. I did note that sometimes, not today, the message would take a very long time to get to my test AOL account - perhaps 12 hours, but it would eventually show up.
Of course not all of my customers use AOL and everyone else is receiving the statement emails correctly. Just AOL clients and usually they are using a PC, curiously. I have one client with a Mac who is getting them OK on her AOL account.
The brush image has been there for say, 5 years? Hopefully that is not the problem as I really, really like the brush.
I do agree with what you are suggesting: This is a MYOB problem and MYOB will have to solve it. But thanks for identifying the thing. I will be hopping on the Tech Support Desk tomorrow - can't get through by phone on Mondays usually.
Peter Truce

Similar Messages

  • How do i protect pdf from being forwarded by email?

    how do i protect pdf from being forwarded by email?@

    There's nothing at all you can do to stop a PDF from being copied, emailed, put in a USB stick, uploaded to DropBox, or shared in any other way. DRM ($$$$) can make it so that unauthorized copies cannot be opened.

  • Multipart/alternative in email.app

    Hello, i want to read my emails ONLY in text version, for this reason a lot of companies sent the emails in multipart/alternative format but i dont know how to read the emails ONLY in TEXT format.
    Any ideas?
    Thank you.

    i think what you have is standard - It's not the same as the Gmail app - Have you tried the official M/S email app for Hotmail
    For a successful technology, reality must take precedence over public relations, for Nature cannot be fooled.   Richard P. Feynman

  • Creating PDF from Word loses text

    Hi, using Acrobat 9.0 Pro, and creating a PDF with the toolbar icon in MS Word 2003. Occasionally, the newly created PDF will be missing two lines of text at the top of the 2nd page.
    This happens on the one document consistently, which is used as a template for board papers, but not sure if it's happening on other docs as well.
    Have tried using the distiller, and this works fine. Any thoughts?
    Thanks

    Here's an example of what doesn't work. Basically it's all standard bullet points for the first page. At the bottom of the first page, the last bullet point has a lot of text, which then spills over onto the second page for a couple of lines. There is then a new bullet point again on the second page.
    What happens is that the text on the second page above the bullet point does not get captured into the PDF.
    I've shown where the text spills over onto page two by typing the following: "All this text at the top of the second page ........"
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    x
    All the companies offered both a House and Land and Turn Key product strategy except for xxxxx who did not do Turn Key homes. xxxxx homes were also generally more expensive than the other companies. For these reasons it was proposed to omit xxxxx from the Stages 1 and 2 house builder partnering strategy, and use alternate suppliers. All this text at the top of the second page (which continues on from a bullet point on the first page) does not get captured into the PDF when using the Convert to Adobe PDF icon in Microsoft Word 2003. This text will be captured however if you change background colour (fill).
    x

  • Send a pdf from spooler to an email address

    Hi all,
    as the subject says i am trying to send a pdf that exists in the spooler at an email address. Is there an FM that reads the pdf ?
    As far as i can see all the procedures convert OTF to PDF, but i already have a pdf.
    Any proposal is welcome, thank you in advance.
    Regards,
    Alex.

    Hi you can do like this
    data decleration for mail and pdf.
    DATA : gt_listobject LIKE abaplist OCCURS 10 .
    DATA : gt_objcont LIKE soli OCCURS 10 WITH HEADER LINE.
    DATA : gt_objhead LIKE soli OCCURS 10 WITH HEADER LINE.
    DATA : gt_att_head LIKE soli OCCURS 10 WITH HEADER LINE.
    DATA : gt_receivers LIKE soos1 OCCURS 10 WITH HEADER LINE.
    DATA : gt_packing_list LIKE soxpl OCCURS 10 WITH HEADER LINE.
    DATA : gt_so_ali LIKE soli OCCURS 100 WITH HEADER LINE.
    DATA : gt_so_ali1 LIKE soli OCCURS 100 WITH HEADER LINE.
    DATA : gt_document_data LIKE sood1.
    DATA: lineno TYPE i , length TYPE i , size TYPE i.
    DATA: gt_scheme LIKE ztrc_scheme OCCURS 0 WITH HEADER LINE.
    DATA: gd_recsize TYPE i.
    Spool IDs
    TYPES: BEGIN OF t_tbtcp.
    INCLUDE STRUCTURE tbtcp.
    TYPES: END OF t_tbtcp.
    DATA: it_tbtcp TYPE STANDARD TABLE OF t_tbtcp INITIAL SIZE 0,
    wa_tbtcp TYPE t_tbtcp.
    Job Runtime Parameters
    DATA: gd_eventid LIKE tbtcm-eventid,
    gd_eventparm LIKE tbtcm-eventparm,
    gd_external_program_active LIKE tbtcm-xpgactive,
    gd_jobcount LIKE tbtcm-jobcount,
    gd_jobname LIKE tbtcm-jobname,
    gd_stepcount LIKE tbtcm-stepcount,
    gd_error TYPE sy-subrc,
    gd_reciever TYPE sy-subrc.
    DATA: w_recsize TYPE i.
    DATA: gd_subject LIKE sodocchgi1-obj_descr,
    it_mess_bod LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    it_mess_att LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    gd_sender_type LIKE soextreci1-adr_typ,
    gd_attachment_desc TYPE so_obj_nam,
    gd_attachment_name TYPE so_obj_des.
    Spool to PDF conversions
    DATA: gd_spool_nr LIKE tsp01-rqident,
    gd_destination LIKE rlgrap-filename,
    gd_bytecount LIKE tst01-dsize,
    gd_buffer TYPE string.
    Binary store for PDF
    DATA: BEGIN OF it_pdf_output OCCURS 0.
    INCLUDE STRUCTURE tline.
    DATA: END OF it_pdf_output.
    CONSTANTS: c_dev LIKE sy-sysid VALUE 'DEV',
    c_no(1) TYPE c VALUE ' ',
    c_device(4) TYPE c VALUE 'LOCL'.
    DATA: check TYPE c.
    DATA: spid LIKE tsp01-rqident.
    converting spool to pdf..
    spid = syst-spono . " give your spool number here
    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
    EXPORTING
    src_spoolid = spid
    TABLES
    pdf = it_pdf_output.
    CHECK sy-subrc = 0.
    Transfer the 132-long strings to 255-long strings
    LOOP AT it_pdf_output.
    TRANSLATE it_pdf_output USING ' ~'.
    CONCATENATE gd_buffer it_pdf_output INTO gd_buffer.
    ENDLOOP.
    TRANSLATE gd_buffer USING '~ '.
    DO.
    it_mess_att = gd_buffer.
    APPEND it_mess_att.
    SHIFT gd_buffer LEFT BY 255 PLACES.
    IF gd_buffer IS INITIAL.
    EXIT.
    ENDIF.
    ENDDO.
    sending mail
    DATA: p_email LIKE somlreci1-receiver,
    p_sender LIKE somlreci1-receiver,
    sub(40).
    DESCRIBE TABLE it_mess_att LINES gd_recsize.
    CHECK gd_recsize > 0.
    REFRESH it_mess_bod.
    Default subject matter
    gd_subject = 'Subject'.
    gd_attachment_desc = text-002.
    it_mess_bod = text-001.
    APPEND it_mess_bod.
    IF p_sender EQ space.
    gd_sender_type = space.
    ELSE.
    gd_sender_type = 'INT'.
    ENDIF.
    *concatenate sy-datum into sub separated by space.
    MOVE 'Orders Released on' TO sub.
    WRITE: sy-datum DD/MM/YYYY TO sub+27(10).
    Send file by email as .xls speadsheet
    PERFORM send_file_as_email_attachment
    TABLES it_mess_bod
    it_mess_att
    USING
    p_email
    sub "text-003
    'PDF'
    gd_attachment_name
    gd_attachment_desc
    p_sender
    gd_sender_type
    CHANGING gd_error
    gd_reciever.
    ENDFORM. " process_email
    *& Form send_file_as_email_attachment
    text
    -->P_IT_MESS_BOD text
    -->P_IT_MESS_ATT text
    -->P_TEXT_009 text
    -->P_1058 text
    -->P_GD_ATTACHMENT_NAME text
    -->P_GD_ATTACHMENT_DESC text
    <--P_GD_ERROR text
    <--P_GD_RECIEVER text
    FORM send_file_as_email_attachment TABLES it_message
    it_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.
    DATA: t_packing_list LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
    t_contents LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    t_receivers LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
    t_attachment LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    t_object_header LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    w_cnt TYPE i,
    w_sent_all(1) TYPE c,
    w_doc_data LIKE sodocchgi1.
    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.
    w_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
    w_doc_data-obj_langu = sy-langu.
    w_doc_data-obj_name = 'SAPRPT'.
    w_doc_data-obj_descr = ld_mtitle .
    w_doc_data-sensitivty = 'F'.
    Fill the document data and get size of attachment
    CLEAR w_doc_data.
    READ TABLE it_attach INDEX w_cnt.
    w_doc_data-doc_size =
    ( w_cnt - 1 ) * 255 + STRLEN( it_attach ).
    w_doc_data-obj_langu = sy-langu.
    w_doc_data-obj_name = 'SAPRPT'.
    w_doc_data-obj_descr = ld_mtitle.
    w_doc_data-sensitivty = 'F'.
    CLEAR t_attachment.
    REFRESH t_attachment.
    t_attachment[] = it_attach[].
    Describe the body of the message
    CLEAR t_packing_list.
    REFRESH t_packing_list.
    t_packing_list-transf_bin = space.
    t_packing_list-head_start = 1.
    t_packing_list-head_num = 0.
    t_packing_list-body_start = 1.
    DESCRIBE TABLE it_message LINES t_packing_list-body_num.
    t_packing_list-doc_type = 'RAW'.
    APPEND t_packing_list.
    Create attachment notification
    t_packing_list-transf_bin = 'X'.
    t_packing_list-head_start = 1.
    t_packing_list-head_num = 1.
    t_packing_list-body_start = 1.
    DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.
    t_packing_list-doc_type = ld_format.
    t_packing_list-obj_descr = ld_attdescription.
    t_packing_list-obj_name = ld_attfilename.
    t_packing_list-doc_size = t_packing_list-body_num * 255.
    APPEND t_packing_list.
    Add the recipients email address
    CLEAR t_receivers.
    REFRESH t_receivers.
    t_receivers-rec_type = 'U'.
    t_receivers-com_type = 'INT'.
    t_receivers-notif_del = 'X'.
    t_receivers-notif_ndel = 'X'.
    t_receivers-receiver = '[email protected]'.
    APPEND t_receivers.
    function module to send mail with pdf attachment
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
    EXPORTING
    document_data = w_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 = w_sent_all
    TABLES
    packing_list = t_packing_list
    contents_bin = t_attachment
    contents_txt = it_message
    receivers = t_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 t_receivers.
    ld_receiver = t_receivers-retrn_code.
    ENDLOOP.
    this will work...for further calrification reply

  • Printing a PDF from Adobe - Garbled Text

    This might sound like a strange thing to do but I have tried this many times, hoping each time it would work. Basically I create a PDF file in Adobe 7.0 Pro. I insert all sorts of text, callouts, and other shapes. I don't want to send this file to my client because if they print without comments they get the wrong image. Additionally sometimes I might be hiding information which is on the previous PDF file and I don't want the client to see it.
    So when I have the PDF file complete I try to print to a PDF so the comments become incorporated into the file. This works fine except that the text always shows up garbled. Any solutions out there on how to get the text not to garble? 
    I have read through other posts on this site and see that there are text garbling issues.
    (My alternate solution is to use other programs to create the information then print to PDF for the client. this requires converting the PDF information to other types of files or some other type of file manipulation, which always looses quality.)

    Acrobat 8 and 9 allow you to flatten the comments to make them part of the pdf. I don't recall if that is possible in 7. Try looking in the help file.

  • Saving as PDF from Photoshop Elemenst text is missing

    I am saving a PSd as a PDF and the text is missing in the reader, but not in the original PSD, can anyone help?

    Are you using adobe reader to view the pdf or the windows 8 built in pdf reader?
    Is the text still there if you open the saved pdf back into the pse 10 editor using File>Open?

  • Problem sending PDFs from Adobe Acrobat with Email

    All the sudden when I send emails from Adobe Acrobat XI Pro it does not recognize my default mail program (Microsoft Outlook 2013). I've gone to "Edit > Preferences..." and then email accounts. It has the "Default email application (Microsoft Outlook)" checked. But it still persists with the error: "Either there is no default mail client or the current mail client cannot fulfill the messaging requests. Please run Microsoft Outlook and set it as the default mail client."I've set the default mail client as outlook. This service used to work and then all the sudden it stopped working.

    Was the e-mail option working with Outlook 2013 in the past or did you just install OFFICE 2013 and are now having the problem?

  • Process to Generate PDF from HTML Rich Text Editor

    Hi,
    I have a HTML form with the Yahoo Rich Text Editor.
    The Form posts the rich text to a Livecycles process. [REST]
    The input type is String. How could I convert that string into a PDF?
    TIA
    Michael

    Thankyou,
    I saved the input in a temporary file and used the HTML2PDF component, then deleted the temp file,
    Cheers

  • How to print direct to PDF from Microsoft Word, Microsoft Email, etc.?

    Hi,
    I have just purchased Adobe PDF Pack and wonder could anyone answer the above question ie how to get the Adobe print to pdf coming up as a printer on your Print dialog box? Thanks in advance.

    Hi rememdy111,
    Please see this post: Print to Pdf, where I've answered your question.
    Please don't hesitate to ask if you have additional questions.
    Best,
    Sara

  • Text problems with printing to PDF from AutoCAD 2011

    When we print to PDF from AutoCAD, the text in the PDF looks wrong/bad.  It takes on a jagged appearance and doesn't look anything like what the font is supposed to look like.  Any suggestions?

    Yup. It's not that it won't do it, it is just limited to 129". Thanks for the thought. When you print in Acrobat you can see the document size and the page size the program is assuming below the print window. The properties have been set, document adjusted, page size customized. It works exactly as it's designed (according to Adobe help, their knowledge base, etc) but only up to 129". Can do it at any size, decminal, etc. up to and including 129 inches. Prints beautiful, doesn't get chopped no issues at all. Just hits a wall at 129". Been doing it with blueprints for years. Just never needed it this big. In my case it's not a printer/plotter limitation. It's the Adobe PDF printer which is advertised to be able to cusomize page size to 15,000 inches.
    Tried customizing in post script, no luck there either.
    Again, I very much appreciate the suggestions....
    S.

  • This message cannot be displayed because of the way it is formatted. Ask the sender to send it again using a different format or email program. multipart/alternative

    When trying to read messages on one email account I often get the following error message:  This message cannot be displayed because of the way it is formatted. Ask the sender to send it again using a different format or email program. multipart/alternative
    IMAP Email account is with Telus Shared hosting.  I have been through set up with their tech support and everything is set up correctly.
    Of course my gmail account and icloud account works perfectly.
    Any ideas?
    Thank you.

    My iPad not working with hotmail and all Microsoft it working only with icloud ,Google,yahoo mail you andestandyou me or not system not working with this divies

  • Unable to Share a PDF from Adobe Acrobat 8 Pro for Shared Review-Permissions Issue

    Hi,
    I get the following message while trying to initiate shared review for a document.
    Please help.
    Regards,
    Himani

    No updates recently - except possibly whatever Microsoft updates automatically (security, etc.).
    What is quite strange is this specific isolated instance:
    If I am in a Word document, then highlight and select (Ctrl C) a range of text, then go to Acrobat 9 Pro and try to create a PDF from that clipboard text, I get the above error. However, if I select text from another program, such as a web page, then Acrobat does not complain when I try to create a PDF from the clipboard, and everything proceeds as expected.
    So that makes one think that the issue is with Word; however, I sometimes (and "sometimes" is the operative word) get the error when taking text from Excel. But sometimes not.
    Is it Microsoft? But that is strange, as all this worked a few days ago - specifically on Friday 9/3. I use this feature daily,
    And, as I mentioned before, trying to create a PDF from an entire Word file also does not work (create from File).

  • Unable to create a PDF from Word or from Clipboard coming from Word

    Until a few days ago, I had no problem creating a PDF file from a Word document, or from a Word-generated clipboard item. Now this does not work anymore. I have entirely re-installed Adobe Acrobat 9 Pro (successfully), but I still cannot create the PDF coming from the above sources. I now also (sometimes) have the same issue when a clipboard item comes from Excel. No problem with any other source data, i.e. PowerPoint, Web pages, etc.
    Here is the error:
    And this is the next screen:
    Answering "Yes" goes through a lengthy process (successfully), but still does not create my PDF. Both my Word and Excel programs are Microsoft 2007 Professional.
    Any suggestions?

    No updates recently - except possibly whatever Microsoft updates automatically (security, etc.).
    What is quite strange is this specific isolated instance:
    If I am in a Word document, then highlight and select (Ctrl C) a range of text, then go to Acrobat 9 Pro and try to create a PDF from that clipboard text, I get the above error. However, if I select text from another program, such as a web page, then Acrobat does not complain when I try to create a PDF from the clipboard, and everything proceeds as expected.
    So that makes one think that the issue is with Word; however, I sometimes (and "sometimes" is the operative word) get the error when taking text from Excel. But sometimes not.
    Is it Microsoft? But that is strange, as all this worked a few days ago - specifically on Friday 9/3. I use this feature daily,
    And, as I mentioned before, trying to create a PDF from an entire Word file also does not work (create from File).

  • TRYING AGAIN - Printing to PDF from AutoCAD

    When we print to PDF from AutoCAD, the text in the PDF looks wrong/bad.  It takes on a jagged appearance and doesn't look anything like what the font is supposed to look like.  Any suggestions?

    Did you print to the Adobe PDF printer? Are the fonts embedded with the PDF, or is Acrobat having to make font substitutions? You might try the Press or Print job settings. If you are using something other than Acrobat to create the PDF, then I don't have any suggestions other than to try Acrobat.

Maybe you are looking for

  • How can I get my money back from a recent app?

    YES I WOULD LIKE TO GET MY MONEY BACK PLEASE, I AM NOT SATISFY WITH THIS APP.

  • PS CS4 - Vertical Poster Image Appears Square - Why?

    I just installed CS4 on Monday. I've been working with Photoshop 7. I work in a theatre and create a lot of vertical images -- posters, brochures, etc. They all appear square when I open them. In the View menu, there is not a checkmark next to Pixel

  • Compilation problem on solaris9  x86

    I am working on JAVA/J2EE . Am new to solaris9 . My requirement is to compile a source distribution of MOD-JK 1.2.21 (apache 2.0 server connector)and to produce binary distribution (*.so file) in solaris9 X86 box. But i got only source distribution o

  • Getting UNDECIDED changes in v$streams_capture

    DB Version: 10.1.8.1, LOCAL capture. I have a situation where the streams administrator (say APPS) is not the owner of the base table (say APPLSYS), for which I want to capture the DMLs. Streams Administrator owns the queue, queue table and has been

  • Cant rotate text properly in Flash MX

    When I rotate my text in Flash with the transform tool, it will ONLY export out as a animated gif file not as a swf, or html. The text will appear missing. It looks fine in the fla file, now when I dont "transform" or rotate the text, it comes fine a