Problem with Mail with attachments when sent to PC's

I am having problems when I send mail from Apple Mail with an attachment from my machine to a PC machine. I use the attach tab at the top, and I choose Windows friendly attachments. But for some reason when my recipient gets my message there is no attachment attached to the message. Is there something I am doing wrong? My recipients have there mail application set up all right, but for some reason they have issues with my messages which are meant to have attachments.

I also have this problem, when sending jpg's to a PC who is running outlook, and have their own MS mail server in-house.
When my mail arrives in her inbox, the attachments are embedded in the email, and when she right clicks they are called "Untitled" even though when I sent them, then had file names with .jpg extension.
And yes I have windows friendly on.
Any ideas anyone?
wilse

Similar Messages

  • Problem sending mail with attachments???

    Hi Everybody,
    I have got a problem sending mail with attachments...
    I am able to send a plain mail ... but when i am trying to send mail along with an attachment ... its not being sent....
    its not showing any error it is simply hanging...
    what should i do?
    If u know any solns please do suggest me....
    Thanks in advance

    activation.jar is already there...
    initially i wrote a swing program as a front end and it was working abs fine... in my sense it was properly sending mails along with the attachments...
    when i changed the front-end to JSP handled by Servlets i am getting a problem...
    and even the swing program stopped working ...
    now swing program is getting compiled but it is hanging at run time showing an exception "Exception occured during event dispatching"
    i dont understand what probably may be the problem...
    if u can trace out, please give me any suggestions
    Thanks in advance and regards

  • Problem with mail .mp3 attachments

    I can't figure out how to fix a lock up with mail when I try to attach an .mp3 file in mail 7.1 on Mavericks 10.9.1.  Whenever I try to attach an .mp3 by dragging or using the "paperclip" I get a green + "copy" sign and then the beach ball, which never goes away.  It is only a problem on my macbook pro.  My iMac has the same versions and is just fine.  I only have noticed problems with .mp3 files.  I have no issues with anything else I've tried to attach.

    Since it works perfectly on your iMac, but not on your Macbook Pro, it may be some settings in your Mail app on your MBP are not set the same as on your iMac.
    And it almost sounds like your hanging Mail app is expecting to do something else with the MP3 file, or translate it into some other format. Have you demonstrated through other means that your MBP's MP3 files are not damaged or corrupted, or aliases rather than the actual files?

  • Mail not delivered when sent with the Unix "mail" command

    I am trying to send mail from the Unix command line with the "mail" command. Whenever I try to send an e-mail using a command of the form:
        mail -s 'This is the subject' <email address>
    the mail message always ends up in subdirectories of the postfix "deferred" directory:
        /private/var/spool/postfix/deferred
    It seems that the mail system runs for 60 seconds after an e-mail is sent and during that time I can run "mailq". If I do that I see something like the following:
    -Queue ID- Size ----Arrival Time---- -Sender/Recipient-------
    0195D1534C54 494 Sat Oct 18 11:48:13 [email protected]
    (connect to broadpark.no\[217.13.4.67\]: Operation timed out)
    [email protected]
    040F51556A8C 334 Sat Oct 18 17:42:39 [email protected]
    (connect to broadpark.no\[217.13.4.67\]: Operation timed out)
    [email protected]
    0C408153869D 1992 Sat Oct 18 12:26:48 MAILER-DAEMON
    (connect to broadpark.no\[217.13.4.67\]: Operation timed out)
    [email protected]
    3B10415374FC 1992 Sat Oct 18 12:23:47 MAILER-DAEMON
    (delivery temporarily suspended: connect to broadpark.no\[217.13.4.67\]: Operation timed out)
    [email protected]
    4509815374C0 342 Sat Oct 18 12:21:47 [email protected]
    (delivery temporarily suspended: connect to broadpark.no\[217.13.4.67\]: Operation timed out)
    [email protected]
    4CFC915374C7 2050 Sat Oct 18 12:21:47 MAILER-DAEMON
    (delivery temporarily suspended: connect to broadpark.no\[217.13.4.67\]: Operation timed out)
    [email protected]
        +<lots of lines snipped out>+
    It seems to be complaining that the connection timed out to broadpark.no\[217.13.4.67\], which is the domain of my ISP.
    My outgoing SMTP mail server is:
        mail.broadpark.no\[217.13.6.35\]
    Could it be that mail system is trying to connect to the wrong SMTP mailserver? If so, how can I fix this?
    I should mention that mail flows perfectly in and out of my machine via the Mail.app program. I am only having problem sending mail down at the Unix command line level.
    I had this working on OS X 10.4.x, but this is the first time I have tried this with Leopard.
    Any help/suggestions would be greatly appreciated. Thanks in advance.

    Perhaps I should have been a little bit clearer why I want to be able to send mail via my local mail/postfix system: I have several servers set up on my iMac, in particular:
        apache
        trac
    I want these servers to be able to send mail to, e.g.,
        webmaster@localhost
        root@localhost
        trac@localhost
    I have created aliases for these addresses in:
        /etc/postfix/aliases
    (I have also executed "newaliases"). These aliases all point to my own user account on the same machine (my iMac).
    Finally, I have a .forward file at the root level of my OS X account that forwards all local Unix mail to my normal e-mail account handled by my ISP.
    This way, all local mail sent to "webmaster2, "root", "trac", etc., should be sent to my normal e-mail address that I monitor with Mail.app.
    *This all worked perfectly with Mac OS X 10.4.x,* so I know it should be possible. However, I have only now just tried to set this up 10.5.x (Leopard) and, clearly, I am having problems.
    Perhaps this motivation for wanting to send e-mail via the Unix mail system will help others understand my situation, and I hope someone can point me in the right direction. Thanks very much in advance.

  • Deal with mails with / without attachments

    My codes actually can save the image attachment of emails from email server. But, one problem I have is the codes don't work for mails with no attachment. How can solve this? I have added the structure of how I coded it. I am not sure if I can modify the 2nd part of the codes such that mails without attachment can work too. Pls advise. thank.
    My code pattern is like this:
    1st part : Connection.
    2nd part:
    if (contentType.startswith("image/")){
    //get the image and save to folder and insert path to image table of database
    if (contentType.startswith("text/plain")){
    // insert image id and text to another table of database
    3rd part: Delete email.

    I don' have the demo folder currently. Any sample code that can be posted here?
    I tried
    if(disposition == null){
    //do this for emails with no attachment
    else if (disp.equalsIgnoreCase(Part.ATTACHMENT)){
    //do this with attachments
    else{
    out.println("invalid");
    But it still can't work. The (disp == null) seems to pass in all values for both emails with attachments or no attachments....Why??

  • Problem sending mail with roaming profile (Outlook 2010)

    Hello all,
    I hope you will be able to help me.
    Here's the problem I have with Outlook 2010:
    When a user opens a roaming profile on another
    PC or on his new
    PC, everything works perfectly except
    Outlook.
    Outlook opens normally with all email
    accounts, you can even see the email, no worries
    about that.
    But when we want to send an email, it
    gets stuck in the outbox.
    Some additional info:
         - In the account settings,
    you can test the account settings, it says
    that everything is working (sending and receiving)
         - The only way I found today to
    operate the account is to
    completely remove and reconfigure
         - There is an error message
    that says I can not write on the file C:\Users\UserName\AppData\Roaming\Microsoft\Outlook\accountName.pst
         - The problem occurs with
    all users, not just one in particular
         - The accounts are IMAP
         - Incoming emails work
    Thank you for your help.

    Hi Tim,
    This is a known issue in Outlook, we don't recommend using IMAP account with roaming profile.
    For more information, you might want to read this similar thread:
    https://social.technet.microsoft.com/Forums/office/en-US/f9b1bf03-d468-46e8-b40d-76fac11fd66c/outlook-2010-creates-new-imap-pst-files-at-random-and-cannot-send-mail-roaming-profiles-and-imap?forum=outlook
    Regards,
    Ethan Hua
    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.

  • Problem for Mail with PDF attachment

    Hello all,
    I have a problem regarding sending mail with a PDF attachment from SAP. The attachment contains Payslip of employee that is being generated from a Submit program of the respective HRFORM. I have used the Submit program within a JOB and the spool request generated. From the spool request i am extracting the pages using FM RSPO_GET_PAGES_SPOOLJOB.
    Now to convert the spool job to PDF am using FM CONVERT_OTFSPOOLJOB_2_PDF.  And after the job is being finished, am deleting both the JOB and SPOOL.
    To change the output of the FM CONVERT_OTFSPOOLJOB_2_PDF, into attachment with line width of 255 am using FM SX_TABLE_LINE_WIDTH_CHANGE. Then after filling all the required parameters for FM SO_DOCUMENT_SEND_API1, am sending the mail with the attachment. I have kept the format as PDF.
    But the problem here is, the attachment is going as .DAT file and not as .PDF file!!!
    Please help to resolve this issue.
    with regards,
    Koushik.

    Hello,
    Instead of using SO* APIs to send mail you should use the BCS classes. Anyway there is a sample program BCS_EXAMPLE_8 which is very similar to your requirement
    Cheers,
    Suhas
    PS: The sample program BCS_EXAMPLE_6 has got more to do with PDF forms as is your case

  • SMTP connection problems in mail with 10.4.7

    I have been using Mail with no problems until updating to 10.4.7.
    I am with BT Broadband for Business, using their SMTP server. I have checked that the update did not tick the SOCKS option in network preferences, but this remains unticked so is not the problem.
    I know for sure that the SMTP settings are correct, and working, as my wife is able to send mail from Outlook on her PC using the same account with no problems.
    I had this problem a couple of days ago, and fixed it by installing the latest combo update of 10.4.7. I tried this again as the problem re-occurred out of the blue, but this time applying the update is not fixing the problem.
    This only applies to outgoing mail, incoming mail still arrives.
    Can anyone help?
    Thanks
    Bob
    PowerMac G5 2.0Ghz Dual Processor, 4Gb RAM Mac OS X (10.4.7)

    I have been using Mail with no problems until updating to 10.4.7.
    I am with BT Broadband for Business, using their SMTP server. I have checked that the update did not tick the SOCKS option in network preferences, but this remains unticked so is not the problem.
    I know for sure that the SMTP settings are correct, and working, as my wife is able to send mail from Outlook on her PC using the same account with no problems.
    I had this problem a couple of days ago, and fixed it by installing the latest combo update of 10.4.7. I tried this again as the problem re-occurred out of the blue, but this time applying the update is not fixing the problem.
    This only applies to outgoing mail, incoming mail still arrives.
    Can anyone help?
    Thanks
    Bob
    PowerMac G5 2.0Ghz Dual Processor, 4Gb RAM Mac OS X (10.4.7)

  • Problem sending mail with ATTATCHMENTS

    hi all,
    Im doing something like this to send a mail with attatchments:
         msg.setRecipients(Message.RecipientType.TO, address);
         msg.setSubject(subj);
         MimeBodyPart textPart = new MimeBodyPart();
         textPart.setContent(text, "text/plain");
         File f = new File(filename);     
         MimeBodyPart attachFilePart = new MimeBodyPart();
         FileDataSource fds = new FileDataSource(f);
         attachFilePart.setDataHandler(new DataHandler(fds));
         attachFilePart.setFileName(fds.getName());
         Multipart mp = new MimeMultipart();
         mp.addBodyPart(textPart);
         mp.addBodyPart(attachFilePart);
         msg.setContent(mp);
         Transport.send(msg);
    this is working for the first time........
    if I execute this for the second time.... my attatchments are visibile inside the message..... something like this...
    ------=_Part_28_1086341.1034758766530
    sd
    <br>fa
    <br>sdf
    <br>sd
    <br>
    ------=_Part_28_1086341.1034758766530
    Content-Disposition: attachment; filename="2day's Work.txt"
    Today's tasks done:
    OCR conversion for the following:
    1) pages rescaned in 12th class part A.
    2) pages 61- in 12th class part C.
    ------=_Part_28_1086341.1034758766530--
    it is showing the attatchment content inside when i run the same code for the second time....
    anyone can help me out!!!
    thax in adv,
    kiran

    yup.. it worked navaz.....
    thx a lot... may i know whatz happening here...
    thx again...
    kiran

  • Problem sending mail with Gmail POP

    A few days ago I began having trouble sending email through mail in my gmail account. (hope you got that) I checked my gmail account online and saw theat eventhough I got an :unable to deliver mail, please try another account message" from Mail, the message was sent according to gmail.
    I went into my account settings and saw that my port was changed from 587 to 25. So i changed it back, I also noticed that my username was not how gmail had it listed, so i changed both and now i still get that message but the emails are getting sent according to gmail.
    please help

    I just began experiencing the same problem. I attempted deleting the pref's file and all other corresponding mail files out of my library to no avail.
    Oddly, I can't seem to send out any other SMTP server either.

  • Why does my "Doteasy" e-mail format change when sent using Mozilla?

    Up until recently I have been using Internet Explorer as a browser both at work and at home. I recently switched to Mozilla Firefox only at home and have been happy overall.
    When I access my work e-mail account from home ("Doteasy.com") I am unable to control the font size, type and my signature when sending e-mails. Usually the resulting e-mail when sent ends up combined in a long paragraph that is hard to read and really unprofessional looking.
    I did try to follow how to set up Mozilla with an e-mail program but when I select the "Tools" menu the "Account Settings" does not appear in the menu and I have been unable to find it. I have the latest version of Mozilla too (as of 11/14/2011).
    My life will be so much easier if I can work from home once in awhile.
    Thanks for help!!
    Thank you.

    My computer does this too. It also has made my Sent Button disappear and refers me to a "send later" solution. which is do not get or have. Shake the tree, maybe a nut will fall. Crack the nut and there you will find the Chinese answer!

  • Where does Mail save attachments to sent messages?

    In believe attachments to sent messages used to be saved in the ~/library/application support/mail folder. I don't find any such folder with Mavericks.
    Are outgoing attachments saved at all? If so, where?
    Thanks,

    I'm using version 1.4.1.
    I tried doing the saveChanges and that didn't help. I do get the following in my msg.txt:
    Message-ID: <12270656.1258643679179.JavaMail.jlapoint@ISSWEB-2199>
    Date: Thu, 19 Nov 2009 09:14:37 -0600 (CST)
    From: test
    To: test
    Subject: test
    MIME-Version: 1.0
    Content-Type: multipart/mixed;
         boundary="----=_Part_11_13738728.1258643679164"
    X-Priority: 3
    ------=_Part_11_13738728.1258643679164
    Content-Type: text/plain; charset=us-ascii
    Content-Transfer-Encoding: 7bit
    test
    ------=_Part_11_13738728.1258643679164
    Content-Type: text/plain; charset=us-ascii
    Content-Transfer-Encoding: 7bitDoesn't look like the attachment is in there (I sent a word document).

  • Weird Files Generated with Attachments when Sent to Windows

    When I attach a file to an email message and send it to a windows user, a file like "ATT341087.htm" is generated and appears below the file I attach.
    "Always Send Windows Friendly Attachments" is checked.
    Any idea what this is?

    Are you using RTF for message composition along with a signature?
    Try using Plain Text for message composition the next time you are sending an attachment to this recipient to see if the same occurs.

  • Problems sending mail with txt attachtment using SO_DOCUMENT_SEND_API1 MF

    Hi gurus,
    I allready tried to search in the forum some threads related with my problem, but i couldnt found any with the same problem that im having.
    My problem it's when attachting an txt file, using MF SO_DOCUMENT_SEND_API1 MF, the mail attachtment it's coming with the txt file but instead of coming with the all lines in the contents_bins table the file it's coming with a few lines. I think the problem it's that the txt file should come with 80 characters per line, like it's on the contents_bin table, buu instead that the MF it's filling me each line of the file with 1024 characters.
    Does anyone has ideas what im doing wrong?
    Ps - Below goes my code.
    Thanks in Advance,
    Best Regards,
    João Martins.
      CLEAR contents_bin.
      REFRESH contents_bin.
      PERFORM get_attachment TABLES tab_movimentos contents_bin
                             USING linha_inicial
                             linha_final.
      CLEAR: document_data, tab_lines.
      MOVE 'Aviso Ficheiro Retorno' TO document_data-obj_descr.
      MOVE 'Aviso Ficheiro de Retorno TU' TO document_data-obj_name.
      DESCRIBE TABLE contents_txt LINES tab_lines.
      READ TABLE contents_txt INDEX tab_lines.
      document_data-doc_size = ( tab_lines - 1 ) * 255
                               + STRLEN( contents_txt ).
      CLEAR packing_list.
      REFRESH packing_list.
      packing_list-transf_bin = space.
      packing_list-head_start = 1.
      packing_list-head_num = 0.
      packing_list-body_start = 1.
      DESCRIBE TABLE contents_txt LINES packing_list-body_num.
      packing_list-doc_type = 'RAW'.
      APPEND packing_list.
      packing_list-transf_bin = 'X'.
      packing_list-head_start = 1.
      packing_list-head_num   = 1.
      ADD 1 TO tab_lines.
      packing_list-body_start = tab_lines.
      CLEAR: lv_filename, tab_lines.
      CONCATENATE 'Fich Retorno -' nome_ficheiro INTO lv_filename.
      DESCRIBE TABLE contents_bin LINES tab_lines.
      packing_list-doc_type   =  'TXT'.
      packing_list-obj_descr  =  'Ficheiro Retorno'.
      packing_list-obj_name   =  lv_filename.
      packing_list-doc_size   =  tab_lines * 255.
      APPEND packing_list.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
           EXPORTING
                document_data              = document_data
                put_in_outbox              = 'X'
                sender_address             = 'SIFJOB'
                sender_address_type        = 'B'
           IMPORTING
                sent_to_all                = sent_to_all
           TABLES
                packing_list               = packing_list
                contents_bin               = contents_bin
                contents_txt               = contents_txt
                receivers                  = tab_receiver
           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.
      SUBMIT rsconn01 WITH mode = 'INT'
                  WITH output = SPACE
                  AND RETURN.
    FORM get_attachment TABLES   p_tab_movimentos STRUCTURE
                                 zlinha_movimentos_fich_retorno
                                 p_contents_bin STRUCTURE contents_bin
                        USING    p_linha_inicial STRUCTURE
                                 zlinha_inicial_ps2
                                 p_linha_final STRUCTURE
                                 zlinha_final_ps2.
      DATA: lv_valor(14).
      DATA : line(80) TYPE x.
      CONCATENATE p_linha_inicial-referencia p_linha_inicial-tipo_registo
      p_linha_inicial-tipo_operacao p_linha_inicial-situacao_conta
      p_linha_inicial-situacao_registo p_linha_inicial-iban+4(21)
      p_linha_inicial-moeda p_linha_inicial-data_pag
      p_linha_inicial-ref_ordenante p_linha_inicial-filler
      INTO p_contents_bin-line.
      CLEAR line.
      conv_bin p_contents_bin-line line.
      MOVE line TO p_contents_bin-line.
      APPEND p_contents_bin.
      CLEAR p_contents_bin.
      LOOP AT p_tab_movimentos.
        CLEAR: lv_valor.
        WRITE p_tab_movimentos-montante TO lv_valor.
        PERFORM normalize_value USING lv_valor.
        CONCATENATE p_tab_movimentos-referencia
          p_tab_movimentos-tipo_registo p_tab_movimentos-tipo_operacao
          p_tab_movimentos-sit_conta_retor p_tab_movimentos-situacao_registo
          p_tab_movimentos-nib lv_valor
          p_tab_movimentos-ref_ordenante p_tab_movimentos-filler
          INTO p_contents_bin-line.
        CLEAR line.
        conv_bin p_contents_bin-line line.
        MOVE line TO p_contents_bin-line.
        APPEND p_contents_bin.
        CLEAR p_contents_bin.
      ENDLOOP.
      CLEAR: lv_valor.
      WRITE p_linha_final-mont_total TO lv_valor.
      PERFORM normalize_value USING lv_valor.
      CONCATENATE p_linha_final-referencia p_linha_final-tipo_registo
        p_linha_final-tipo_operacao p_linha_final-filler_1
        p_linha_final-situacao_registo p_linha_final-filler_2
        p_linha_final-total_reg lv_valor
        p_linha_final-filler INTO p_contents_bin-line.
      CLEAR line.
      conv_bin p_contents_bin-line line.
      MOVE line TO p_contents_bin-line.
      APPEND p_contents_bin.
      CLEAR p_contents_bin.
    ENDFORM.                    " get_attachment

    Hi,
    I've solved this problem. The problem was because i was using the
    * Anexo - Descrição
      packing_list-transf_bin = 'X'.
      packing_list-head_start = 1. "Here it must be 0 because i wasn't using any table header
      packing_list-head_num   = 0.
      ADD 1 TO tab_lines.
      packing_list-body_start = 1.
      CLEAR: lv_filename, tab_lines.
      CONCATENATE nome_ficheiro 'TB' INTO lv_filename.
    *  CONCATENATE 'Fich Retorno -' nome_ficheiro INTO lv_filename.
      DESCRIBE TABLE contents_bin LINES tab_lines.
      packing_list-doc_type   =  'TXT'.
      packing_list-obj_descr  =  lv_filename."'Ficheiro Retorno'.
      packing_list-obj_name   =  lv_filename.
      packing_list-body_num = tab_lines.
      packing_list-doc_size   =  tab_lines * 255.
      APPEND packing_list.
    Best Regards
    Thanks,
    João Martins

  • Problem in Mail with iMac i5 OSX Lion

    When i create a new email in Mail and select underline everything works well but when i try to deselect underline it wont do that, could somebody advice me on this problem, i have a iMac i5 with OSX Lion

    Try completely closing Mail and then reopening Mail? (Mail-->Quit Mail)
    or Command + U to toggle between underline on & underline off?

Maybe you are looking for

  • "empty file" error with CS5, linux server and mavericks

    hello to the community, i'm the owner of a small online marketing agency. we have been using different macs here since 10.6. until mavericks with adobe CS 5 and a linux server for years. today i got a new MBP retina with mavericks and since now i hav

  • Definitely need a Gurus help - PC running Apple 30 Inch

    I recently purchased a 30 inch Apple HD Display to go with my Athlon64 3400 2.41 GHZ with 2 Gigs Ram, describing this monitor is like trying to describe the Grand Canyon, this monitor is excellent! However I have run into a issue where I cannot get t

  • How to POST an object in an Applet to a JSP server?

    I'm trying to realize such a functionality: when the 'Submit' button of a form is clicked, the form fields as well as a 'byte[]' object in an Applet in the page are POSTed to the JSP server. How to implement this? PS I hope I'm posting in the right f

  • Successful Switch From Single CC to Photoshop Photography Program

    Today's the last day to sign up. Use Adobe Chat. Open 24 hrs. day, 7 days. Don't bother with the telephone. Clearly write out your situation, and what you want done. Save the chat dialog, in case you need it later. Look for and save the email confirm

  • Firefox is now not extending to full screen upon start-up

    Firefox used to open msn homepage completely to the edges of our computer screen, excepting browser .. now.. inexplicably, it leaves a border of desktop background showing. We wish it to return to previous format. (?) == This happened == Every time F