Forwarding email with attachments doesn't work

In Mail.app, why when I forward an email with any kind of attachment does the email only contain a text description of said attachment and not the actual attachment itself?
I then have to down the attachment to my desktop and re-attach it to the email I'm forwarding. Not a big deal, but I don't see why I need to take these extra steps and cannot find a relevant preference in the Mail.App client prefs.
Thanks!

BD,
That was totally it. This has been plaguing my Mom and frustrating her for a year now. For some reason, I wasn't notified of your response many moons ago.
Thanks so much,
Josh
ps. lol, I guess in looking at the time stamp it's been 4 years - jeez. Thanks again!
Message was edited by: Joshua Nelson2

Similar Messages

  • Forwarded emails with attachments not showing email thread history

    Hi,
    My boss has a Mac laptop and forwards me emails for me to action. When the emails have attachments the email thread history doesn't come along with the email, so all the conversation leading up to the email being forwarded. It just shows what he has written and stops at the signature.
    When an email is forwarded without attachments the thread history is included. We've done some testing and it's specific to him and his Mac.
    Sorry I don't have a mac laptop myself so don't know a lot of details about what he uses but can find out information that is important to solving the issue.
    I've had a good look but can't find any setting on his Mac to change this, any help would be greatly appreciated.
    Thanks, Simon

    Still love any advice on this issue if anyone can help????
    Thanks

  • Mail Services New email with selection doesn't work, leads to Force Quit

    I've posted this before, but got no replies so I'm trying again since it's driving me crazy. It was a problem under Mavericks and still exists under Yosemite's Mail.
    When I select text and then go to the Services menu and pick "New email with selection," much of the time a totally empty new email message window opens , won't let me type in it at all, nor will it close or send. It just sits there until I Force Quit Mail.
    HELP PLEASE!!!

    Standard Apple Mail. I'm running Yosemite 10.10.1, and I'm amazed to see that About Mail says it's Mail Version 8.1 (1993), copyright 1995-2014 Apple Inc. 
    Interesting thought, do you think that it doesn't like to work with itself?  Actually, I'm fairly sure I've had the problem inside of other apps but I should document that.  I'll keep notes to see where this happens. 

  • IMessage with attachments doesn't work

    Sometimes I notice that when I send a picture by iMessage from the "Photos" folder, it seems that the message has been sent but when I go to "Messages" I can't see it: the thread with the person that should have received the iMessage does not include it. The message does not start at all.
    It doesn't happens every time, I really don't know why this happens but it is very frustrating.
    Solutions?
    Thanks in advance.

    Hello agordino,
    Thank you for the details of the issue you are experiencing with sending photos from the Photos app.  I have a couple of suggestions for the issue you are experiencing.
    The first thing I recommend is quitting and relaunching the applications on your iPhone:
    Double-click the Home button.
    Swipe left or right until you have located the app you wish to close.
    Swipe the app up to close it.
    You can find the full article here:
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    If you are still seeing the same issue after quitting and relaunching the Messages app, I recommend restarting your phone and then resetting if it's still not working:
    Restarting your device
    Press and hold the Sleep/Wake button for a few seconds until the red "slide to power off" slider appears, and then slide the slider.
    Press and hold the Sleep/Wake button until the Apple logo appears.
    Note: Reset your device only if you are unable to restart it.
    Resetting your device
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    You can find the full article here:
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    If the issue persists, try logging out and back into iMessage on your iPhone in Settings>Messages:
    iPhone User Guide - Messages Settings
    http://help.apple.com/iphone/7/#/iphf2d853e3
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Email with attachment doesn't work

    Hi all,
    I have a form in with i upload a file. On submit i send a mail with attach the file i uploaded. the form has as action a servlet.
    Well it works if i try it on the localhost, when i try it from my computer to the server the mail is sent but without the file attach.
    the code is the following:
    import java.util.Properties;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    import java.io.*;
    import java.util.*;
    /public class SendMail
    String host ="" ;
    String from ="" ;
    String to ="";
    String subject ="";
    String body ="";
    String id ="";
    String filename ="" ;
    boolean add = false;
    boolean tosend = false;
    public SendMail(String h , String f)
         host = h;
         from = f;
    public void setTo(String to)
         this.to = to;
    public void setSubject(String obj)
         this.subject = obj;
    public void setBody(String body)
         if(add)
              this.body += body;
              add = false;
         else
              this.body = body;
    public void addToBody(String body)
         this.body += body;
    public boolean getContinue()
         return add;
    public void setContinue(boolean a)
         add = a;
    public String getBody()
         if(!add)
              return this.body;
         else
              return "";
    public boolean send()
         try
         //Get system properties
         Properties props = System.getProperties();     
         //Setup mail server
         props.put("mail.smtp.host", host);
         // Get session
         Session session = Session.getDefaultInstance(props, null);
         // Define message
         MimeMessage message = new MimeMessage(session);
                   // Set the from address
                   message.setFrom(new InternetAddress(from));
    //               Set the to address
    System.out.println("to = >" + to +"< body = "+ body);
         message.addRecipient(Message.RecipientType.TO,new InternetAddress(to));
    //     Set the subject
         message.setSubject(subject);
    //     Set the content
         message.setText(body);
    // Send message
         // Transport.send(message);
    File file = new File(filename);
                   if (file.exists())
                        // create and fill the first message part
                        MimeBodyPart mbp1 = new MimeBodyPart();
                        mbp1.setText(body);
                        // create the second message part
                        MimeBodyPart mbp2 = new MimeBodyPart();
                        // attach the file to the message
                        FileDataSource fds = new FileDataSource(filename);
                        mbp2.setDataHandler(new DataHandler(fds));
                        mbp2.setFileName(fds.getName());
                        // create the Multipart and its parts to it
                        Multipart mp = new MimeMultipart();
                        mp.addBodyPart(mbp1);
                        mp.addBodyPart(mbp2);
                        // add the Multipart to the message
                        message.setContent(mp);
                   // send the message
                   Transport.send(message);
    return true;
    catch (AddressException e)
                   e.printStackTrace();
                   return false;
    catch (MessagingException e)
                   e.printStackTrace();
                   return false;
    catch (Exception e)
                   e.printStackTrace();
                   return false;
    Any help is appreciated.
    Thanks!

    Ok, I have made something similar to which your you want to do.
    Before to send a e-mail you have to upload the file, and later you can attach it into the e-mail.
    To upload the file:
    I made it with a jsp file (has a form) where I call to a java servlet how upload the file:
    package ServletUpload;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.text.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import org.apache.commons.fileupload.*;
    import org.apache.commons.fileupload.disk.DiskFileItemFactory;
    import org.apache.commons.fileupload.servlet.ServletFileUpload;
    public class uploadFichero extends HttpServlet {
        public void init(ServletConfig config) throws ServletException{
            super.init(config);
        protected void processRequest(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {
            response.setContentType("text/html");
            PrintWriter out = response.getWriter();
            out.println("<html>");
            out.println("<head>");
            out.println("<title>Servlet</title>");
            out.println("</head>");
            out.println("<body>");
            out.println("We began the processing of the file");
            boolean uploaded = false;
            uploaded = procesaFicheros(request,out);
            if (true==uploaded)
                out.println("File uploaded");
            else
                out.println("Error to upload File");
            out.println("</body>");
            out.println("</html>");
            out.close();
        public boolean procesaFicheros(HttpServletRequest req, PrintWriter out ) throws ServletException, IOException {
            try {
                boolean isMultipart = FileUpload.isMultipartContent(req);
                out.println ("<br>Is multipart:"+isMultipart);
                // Create a factory for disk-based file items
                FileItemFactory factory = new DiskFileItemFactory();
                // Create a new file upload handler
                ServletFileUpload upload = new ServletFileUpload(factory);
                // Set overall request size constraint
                upload.setSizeMax(1024*512); //524288 Bytes (512 KB)
                // Parse the request
                List items = upload.parseRequest(req);
                // Process the uploaded items
                Iterator iter = items.iterator();
                while (iter.hasNext()) {
                    FileItem item = (FileItem) iter.next();
                    if (!item.isFormField()) {  //Files to upload
                        String fieldName = item.getFieldName();
                        String fileName = item.getName();
                        String contentType = item.getContentType();
                        boolean isInMemory = item.isInMemory();
                        long sizeInBytes = item.getSize();
                        /* ************* FOR WINDOWS EXPLORER ****************** */
                        /* ************** FOR MOZILLA EXPLORER IS NOT NEED ****************** */
                        /* *********** We extract the name of the file ONLY the name *********** */
                            /*  We have the name into a string, We have the separated folders by the character \  */
                        int numbers=0;
                        for(int i=fileName.length();(i=fileName.lastIndexOf('\\',i-1))>=0;)
                            numbers++;
                            /* WE OBTAIN A STRING FOR EACH DIRECTORY And The FILE */
                        String stringFile[] = fileName.split("\\\\");
                        /* *********** We only extract the name of the file (END) *********** */
                        /* WE CREATED THE FOLDER IN CASE IT DOES NOT EXIST */
                        /* WE VERIFIED IF THE FOLDER EXISTS */
                        String folder = "yourFolderName";
                        String newUserFolder = folder;
                        File createFile = new File("routeOfYourFolder/"+newUserFolder);
                        /*  for example (in unix)
    File createFile = new File("/usr/local/tomcat/webapps/"+newUserFolder);
                        if (!createFile.exists()){ /* IT DOES NOT EXIST, WE CREATE IT */
                            createFile.mkdir();
                        /* WE VERIFIED IF THE FOLDER EXISTS (END) */
                        /* WE WROTE THE FILE (UPLOAD) IN THE CHOSEN FOLDER */
                        fileName = stringFile[numbers];
                        File uploadedFile = new File("routeOfYourFolder/"+newUserFolder+"/"+fileName);
                        item.write(uploadedFile);
                        /* WE WROTE THE FILE (UPLOAD) IN THE CHOSEN FOLDER (END) */
                    } else {        //THAT ARE THE OTHER FIELDS OF THE FORM
                        // s= item.toString();
                        // out.println("<br>isFormField: "+s);
            catch(Exception e) {
                out.println("ERROR IN THE APPLICATION " + e.getMessage());
            return true;
        public void destroy() {
        public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException{
            response.setContentType("text/html");
            PrintWriter out = response.getWriter();
            processRequest(request, response);
        public void doPost(HttpServletRequest req,HttpServletResponse res) throws ServletException, IOException {
              doGet(req,res);
    }  //END OF uploadFicheroI hope it helps you. you will tell me.

  • Converting an Outlook email with Images doesn't work

    I can convert any email from Outlook to a PDF and it will include all .doc and .pdf files, but it seems to just ignore any image attachments. I'm using Acrobat 11.0.06
    Is there a reason why or a solution to get around this? I need to maintain a database of all my applications and some come in as PDF's, others as image files.
    I cannot find an email address for Adobe either, bit fustrating.
    Any help greatly appreciated.

    Hi,
    Goto the Change Conversion settings option on the Adobe PDF tab in outlook.
    On the settings tab , unselect - "Block downlaod of external content"
    That should solve the issue for you.

  • Z10 issue forwarding emails with large attachments

    I am having an issue with my Z10 on Rogers running 10.0.10.85 version of the o/s using Exchange/ActiveSync.
    I am unable to forward emails with attachments greater than about 300kb from my Z10, The emails just stay stuck in the inbox with the "sending" logo and they never send.
    I really need to resolve this and our IT team is stumped? Has anyone else seen this? Any resolution?

    Send this to your IT team and see if it helps. Within 3 minutes of making the changes all was fixed, that is of course if it's the same issue.
    http://supportforums.blackberry.com/t5/BlackBerry-Z10/Cannot-send-some-attachments-or-pictures-red-c...

  • Email with attachments QPAC: setting "From" using process data doesn't work

    Hi,
    I trying to set the "From" in the Email with attachments QPAC from a process variable, let's call it "mailagent", which is of type xs:string.
    So I use a set value QPAC, which sets the "mailagent" variable to "[email protected]". The workflow then continous with the Email QPAC.
    Which stalls and throws the following exception:
    javax.mail.MessagingException: 501 Syntax error, parameters in command "MAIL FROM:<{$/process_data/@mailagent$}>" unrecognized or missing
    Hrm. I thought, I had already used the Email QPAC this way.
    Is there some kind of magic to apply to the Email with attachments QPAC in order for it to accept process data in the "From"?
    Steve

    Yes, I'm sure, it worked for us to. But it obviously no longer does.
    Yes, "mailagent" definitely is a variable of type string, though it's of type
    xs:string. I'm no longer able to create variables, which don't feature the
    xs namespace. Which is quite confusing as I've got absolutely no idea, what the
    xs is used for.
    We are using LiveCycle Workflow 7.2.1, the Email QPAC is 7.0.2. Is this the latest version?
    Steve

  • Problem When Forwarding Email Attachments / Email With Attachments

    I posted a response in a related thread that describes my problem, but have found no solution so I thought I should create a new thread and solicit direct advice for this issue.
    I sync 2 (sometimes 3) Yahoo Email accounts to my iPhone 4. Due to firewall issues at work accessing 'personal email', I often email myself files as attachments, then forward them to others using my iPhone. Having recently upgraded from iPhone 3G to 4, now when I forward an email with attachments, the attachments get zapped to 0B and effectively do not forward. It may show an icon or have the file, but it's an empty file. I always select "Include Attachments" when it asks, but the functionality is not working the way it is supposed to.
    I've tried forwarding .xls .doc and .zip files so far. Even a small 180kB file won't forward.
    The only exception seems to be if I click the attachment, let it fully download, then forward the email. That works for 'standard' types of files, but I didnt have to do this step in the previous iOS, so I am wondering - Is that normal now?
    What about other types of files besides office and adobe? If the iPhone doesn't have support for me to view the file on my phone, I can't "download" it before forwarding. Example is a zip file. It shows as a "?" in my email, so I cant download it, so when I forward it it kills the attachment.
    Regardless what the phone supports to view, if I just want to forward an email from the server along to someone else, it should have the freakin' attachments! This doesn't seem to be the case for all situations though.
    Would seriously appreciate a confirmation others have this issue (go ahead, try to send yourself a zip file and then just forward it back to your PC) and any solutions that might explain how to correct this problem. Maybe there's a server setting or another way of setting up the email accounts that would fix it.
    Thanks all

    Being able to forward as an attachment would be such a useful feature. Forward as in-line text works but this is no good if you want to retain the original email headers or smime content.
    One prime example is the use of SpamCop.net where you need to be able to send the original mail (including headers) for SPAM processing. Forward as attachment is the easiest way to do this.
    Come on Apple, please help us, without the "Forward as Attachment" it make it difficult for us to quickly report SPAM or forward documents. Can it really be that hard to implement?
    Vote... Vote...

  • I am using a mac mini (10.8.3) with Mac Mail 6.3 (1503).  Whenever I try to forward an email with attachments, the attachments do not make it.  They show being sent, but the attachments never are sent.

    Hey Guys,
    The title says it all.  Whenever I receive an email with attachments, I will try to forward the email to someone with the attachments.  Mac Mail shows that the attachments are attached, but the receiver says the attachments are not there. Our mail host is Rackspace.  We are setup with IMAP.  It should be noted that we are experiencing similar issues with OS 10.5.8 with Mac Mail 3.6 (936).
    We assumed Rackspace was the problem, so we logged into their webmail portal and tested it and the attachments were received as normal, which points everything back to Mac Mail.  We even had an ISP change but the problem do not change.
    I have researched the problem, and there seems to be evidence of this being a known bug with Mac Mail, but I am hoping there is a workaround.  The company is unwilling to move to a different mail client since they use Daylite 4, which does not support Thunderbird.

    Back up all data.
    1. Triple-click the line below to select it:
    ~/Library/Mail/Bundles
    Right-click or control-click the highlighted line and select
    Services ▹ Open
    from the contextual menu. A folder may open, or you may get an error message that the item can't be found. Either result is normal. If the folder does open and has contents, move the contents to the Desktop. Relaunch Mail and test. If there's no change, put the contents of the folder back and quit Mail again.
    2. Repeat with this line:
    /Library/Mail/Bundles
    This time you may be prompted for your login password when you remove the items. Make sure they're removed from the folder and not just copied to the Desktop. If necessary, copy them first and then move the originals to the Trash.

  • Mail not receiving emails with attachments

    Hi
    I'd appreciate any suggestions in relation to the following.
    My wife and I both run computers from the one account, Mail on her PowerBook logging in through my name and password. Until recently, we have had no problems at all. However, it has come to light that my wife has not been receiving emails with attachments for some time. To test this, my wife sent an email with an attachment to her home email address from work, and copied it to me. I received the email and the attachment on my PC; my wife's Mac did not receive the email. I then forwarded the email with the attachment to her computer; this was successful. This would suggest some problem with her Mail account on the Mac. However, the configuration has not been changed. Is it possible for it just to stop working for some reason?

    I'm using a PC for my email at the moment. I'm not sure if all my wife's emails have been downloaded. However, Mail has made a Home/Mail/MessageUidsAlreadyDowloaded file. This was created when I sent an email to test what happened. I was unable to make Mail download all her emails, so I guess they must have gone from the server. She has a different email address to mine, but it's run from the same ISP account; as I said, she logs in, automatically, through Mail to her email. I have contacted the ISP about it, but they are unable to see any trace of emails that colleagues have sent my wife and which she sends home to herself. All of these files happen to have attachments, but I cannot see any setting of Mail which would account for them being rejected. Also, I can't be entiurely sure that only emails with attachments don't get through; there may be others, 'unattached'.
    Thanks for your continued assistance.

  • Emails with attachments won't send

    Hi - I'm a new Mac user. I have set up a gmail account and set this account up on my Mac (10.6.4). I can send messages but as soon as there is an attachment (even very small ones of 50kb or so) the message doesn't send and I eventualIy get message a pop up saying that the mail can't be sent using this server.
    However, the 'connection doctor, shows that my 'connection and login to the server is successful'. I've deleted the account and reset it but it doesn't make any difference.
    I have (in gmail) included a divert from my work e-mail address. These messages are received ok as well.

    Do you have a signature line on the bottom of your email?
    I know when I got rid rid of mine on my mac emails, all attachments would magically work.

  • Mail; emails with attachments are not shown in Sent folder

    Since upgrading to Yosemite I have had lots of problems with Mail.
    One is that it seems that some emails with attachments do not show in the Sent folder! Some of them can be found further down, On my Mac in a folder called Recreated letters, or something like that in English.
    Anyone have the same problem?
    Nina

    What is your version of TB? Have you changed anything since the last time it worked? Mail servers changes done by your provider are also possible.
    * Does it occur when an e-mail is sent immediately (before a possible auto-save, see below)?
    * Can you copy any mail from any folder to the Sent folder?
    I've heard of the error "saving to Sent" with older versions of TB, but not related to attachments.
    So, for the general saving to Sent error, some people report that this
    https://kb.wisc.edu/wiscmail/page.php?id=3679
    has helped them.
    I've also heard that turning off "Auto save every .. minutes" in TB preferences > Composition > General has helped some in older versions and IMAP.
    You may check this page: <br>http://kb.mozillazine.org/IMAP:_advanced_account_configuration
    PS: You seem to use Firefox 16, an extremely outdated and insecure browser version. Same for Thunderbird? To be on the safe side (bugs, security), IMHO you should really upgrade regularly to the latest versions, of course backing up your profiles first, especially with TB ( http://kb.mozillazine.org/Profile_backup ).

  • Fetching email with attachments in Tomcat

    I'm trying to process emails with attachments using following code and it works fine in standalone java application, but when I run this code on Tomcat it treates all messages as not multipart. Class of all contents got from messages is SharedByteArrayInputStream.
    I'm using jdk1.6.0_27 and javamail1_4_5
    I put mail.jar in WEB-INF/lib of my war.
    Can anyone help my how to deal with this? What's wrong?
    package test;
    import java.util.Arrays;
    import java.util.List;
    import java.util.Properties;
    import javax.mail.Folder;
    import javax.mail.Message;
    import javax.mail.MessagingException;
    import javax.mail.Multipart;
    import javax.mail.Session;
    import javax.mail.Store;
    public class Main {
    private static Store store;
    private static Folder folder;
    * @param args
    * @throws Exception
    public static void main(String[] args) throws Exception {
    try {
    List<Message> messages = getMessages("...", "...", "...");
    for (Message mess : messages) {
    System.out.println(mess.getSentDate());
    Object content = mess.getContent();
    if (content instanceof Multipart) {
    System.out.println("miltipart");
    } else {
    System.out.println("plain");
    } finally {
    close();
    public static List<Message> getMessages(String host, String userName, String password) throws Exception {
    if (store != null || folder != null) {
    throw new IllegalStateException("There are open and closed messages exist");
    // create empty properties
    Properties props = new Properties();
    // get session
    Session session = Session.getDefaultInstance(props, null);
    try {
    // get the store
    store = session.getStore("pop3");
    store.connect(host, userName, password);
    // get folder
    folder = store.getFolder("INBOX");
    folder.open(Folder.READ_ONLY);
    // get directory
    return Arrays.asList(folder.getMessages());
    } catch (MessagingException e) {
    throw new Exception("Exception while mail receiving ", e);
    public static void close() throws MessagingException {
    // close connection
    if (folder != null) {
    folder.close(false);
    if (store != null) {
    store.close();
    folder = null;
    store = null;
    }

    But I found another interesting issue.
    When I run my application everything works fine on first iteration. According to my code I get default instance of Session, get Store, get Folder and at last getMessages. After processing messages I close folder and store.
    But if I don't restart my application and try to get messages again all of the SAME messages became plain (SharedByteArrayInputStream) again (as it was earlier).
    If I restart my application first iteration works fine and others fails.
    In both iterations used the same instance of class where I put Thread.currentThread().setContextClassLoader(BaseEmailService.class.getClassLoader());
    What I must reinitialize to make it works on each iteration?

  • How can I forward email with embedded photos?

    How can I forward email with embedded photos so that the recipient gets them that way instead of all the text followed by all the photos?

    Hello,
    Thanks (or merci beaucoup).  I am using Mail version 5.2 (1278) that came with the iMac (Mac OS X 10.7.4).  When I forward the email to myself at my "me.com" email address from my "cox.net" email address, the photos come out as attachments even though they were embedded when I received the email on my cox.net email.   What setting(s) can I make to have it get to me.com the way it was in cox.net, i.e. embedded instead of as attachments?
    Lou Edwards

Maybe you are looking for

  • How to connect to iMac from MacBook Pro both using Mavericks

    Since we installed Mavericks on both our Macs (MacBook Pro and iMac) it is not possible anymore to connect to each other. What to do to make this possible again?

  • Mkv file problems

    hello, I recently downloaded a Mkv. file. after looking through some previous discussions I downloaded teh extractor for this, it extracted a .ram video and a .acc audio file. now I'd like to put the two together to make 1 file in a new converted Mpe

  • From string to date format

    I have 2 strings (eg: "1232" and "1332"). These 2 strings are values of an hour (12h32 and 13h32). Important is that these values are not always the same. Now what I have to do is to calculate some given numbers between these hours. Example: Let's ta

  • Ceupdatemanager error on copy permission

    Hi All I am using ceupdatemanager to update my ce 7.1.1(CE 7.1 Ehp1) sp02 to sp03 when the gui is about 10% it will throws an error com.sap.sdt.util.diag.DiagException: sap.com/SAP J2EE KERNEL: Cannot exchange kernel binary archives. Could not execut

  • In Slideshow, auto timing to music length

    When selecting a music track to run against a slideshow, auto-adjust the length in seconds the image is displayed based on the length of the music selection. Make this optional. So as an example, you have 20 images in a slideshow, with a track that l