problem of attach files to emails

Just bought a new pc and I use windows 8 and have a yahoo email address, but I can't attach any file to my e-mail. When I add the attachment, it comes, goes round but don't cling. Any ideas?

Hi Dave,.

Thanks for the reply.

As you have problems with downloading files to Yahoo mail, there could be two possibilities for the question. Either there is something wrong with the network connection or something wrong with the Yahoo Server. If you and your wife use the same network connection, then there is nothing wrong with the network connection. You can wait for a while and check.

However, you can try to delete the cache and temporary files by following these steps and check.

a. start Internet Explorer 10 Version of office.

b. on the Tools menu, click Internet Options. If you don't see the Tools menu, press Alt to display the menu.

c. click on the general tab.

d. under browsing history, click delete.

e. in the dialog delete browsing history , click to select the check boxes and then click delete:

Temporary Internet files

Cookies

History

f. click closeand then click OK to close the Internet Options dialog box.

Let us know if you have other questions related to the issue.

Tags: Windows

Similar Questions

  • Problems with attach files in Yahoo Mail

    I recently bought and loaded Windows 7. Now that I try and attach files in Yahoo emails he won't make any difference. No matter how small or large the file is. Everyone has experienced a similar problem and found a solution or is this a problem that still needs to be paid by Microsoft or Yahoo (or between them)?

    For any question on Windows 7:

    http://social.answers.Microsoft.com/forums/en-us/category/Windows7

    Link above is Windows 7 Forum for questions on Windows 7.

    Windows 7 questions should be directed to the it.

    You are in the Vista Forums.

    See you soon.

    Mick Murphy - Microsoft partner

  • Cannot attach files to email AOL.

    Original title: cannot add files to emails (AOL)

    Something in my multitude of security settings allow me to join my AOL email (.jpg) files from my C: drive.  I can attach files even my emails to Charter Internet using IE9.  I am the owner, the single user and the system administrator.  Where can I find the "switches" to allow AOL e-mail attachments?  I have a homegroup, a working group and a Linksys ethernet network on my laptop Dell Inspiron at home which is runuing Win7 Pro with SP1.

    Also when I try to change the mode to "share with" for a folder of "null" to something else, it remains locked.   As an administrator, how do I control the action with the function?

    Hello

    Question: Attach files to AOL

    You can contact AOL support for assistance.

    http://help.AOL.com/help/product/aol_webmail/

    Problem: shared folders option does not

    Run the Fixit and check.

    Diagnose and repair Windows files and folders problems automatically

    Hope this information helps.

  • Problems with attach files in Yahoo Mail with Firefox

    I use Firefox 4 with Fedora 15. Attach files in yahoo mail does not work. It did not work with Firefox 3 and Fedora 14. Can I attach files in gmail with Firefox 4 / F15 and I can attach files in mail yahoo with Google Chrome. It's just the combination Firefox 4 with yahoo mail that fails. Any suggestions will be appreciated what to look for to resolve the problem. I also tried with all add-ons disabled and in safe mode, but it doesn't help.

    I had the same problem on Windows and found that disable the Shockwave Flash plugin seems to fix the problem.

  • Attach files to emails

    When you try to attach files to an email, I get the message "Internet Explorer has stopped working" and "Windows is looking for a solution, which he never finds.  This happens as soon as I click on "join" and the window to look for my document opens.  What can I do to prevent this.

    When you try to attach files to an email, I get the message "Internet Explorer has stopped working" and "Windows is looking for a solution, which he never finds.  This happens as soon as I click on "join" and the window to look for my document opens.  What can I do to prevent this.

    I'm not sure that it is the answer, but it won't hurt to check.
    Find out if your Internet Explorer has all its flaws...
    Open menu start > default programs > set your default programs > click on Internet Explorer. He said "this program has all its defaults"?
    If not, click on 'Choose default values for the tis program' > tick on each entry on the list > click Save

    t-4-2

  • Problem of attachment file in MimeMessage [API email]

    Hello
    I tried to attach a file PDF and XML Message MIME of API's Messaging. I want to attach a PDF and XML file encoded in gzip format.
    I am able to properly connected both files but its not attached and when I tried to return comes from Message MIME, I get the error message.
    Error is
    --------------------------------------
    java.util.zip.ZipException: tree oversubscribed literal / length
    at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:147)
    at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:92)
    at java.io.FilterInputStream.read(FilterInputStream.java:90)
    at com.asite.supernova.test.CreateReadMimeMessage.ReadMail1(CreateReadMimeMessage.java:145)
    at com.asite.supernova.test.CreateReadMimeMessage.main(CreateReadMimeMessage.java:48)
    --------------------------------------
    Here my code
    --------------------------------------
    import java.io.BufferedInputStream;
    import java.io.BufferedOutputStream;
    import java.io.BufferedReader;
    import java.io.BufferedWriter;
    import java.io.ByteArrayOutputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.FileWriter;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.io.OutputStream;
    import java.io.Reader;
    import java.io.StringWriter;
    import java.io.Writer;
    import java.util.Date;
    import java.util.Enumeration;
    import java.util.Properties;
    import java.util.zip.CRC32;
    import java.util.zip.Deflater;
    import java.util.zip.GZIPInputStream;
    import java.util.zip.GZIPOutputStream;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipOutputStream;
    
    import javax.activation.DataHandler;
    import javax.activation.DataSource;
    import javax.mail.BodyPart;
    import javax.mail.Header;
    import javax.mail.Message;
    import javax.mail.Multipart;
    import javax.mail.Session;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    
    import org.apache.commons.codec.binary.Base64;
    
    import com.sun.istack.internal.ByteArrayDataSource;
    
    public class CreateReadMimeMessage {
         public static void main(String[] args) {
              CreateMail();
              ReadMail1();
         }
         
         public static void CreateMail(){
              try{
                   Properties properties = System.getProperties();
                 Session session = Session.getDefaultInstance(properties);
                 
                 Message msg = new MimeMessage(session);
                 
                 msg.setSentDate(new Date());             
                 Multipart multipart = new MimeMultipart();
                 
                 BodyPart part1 = new MimeBodyPart();            
                 part1.setFileName("test.pdf");                                
                 part1.setHeader("Content-Type", "application/pdf");
                 part1.setHeader("Content-Encoding", "gzip");
                 part1.setHeader("Content-ID", "PDF");
                 
                 
                 //1
                 compressFile("test.pdf","testpdf.gzip");
                 String encodedData = new String(getBytesFromFile(new File("testpdf.gzip")));
                 //1
                 
                 DataSource ds = new ByteArrayDataSource(encodedData.getBytes(), "application/pdf");             
                 DataHandler dh = new DataHandler(ds);
                 part1.setDataHandler(dh);
                 //part1.setText("This is only text data");
                              
                 BodyPart part2 = new MimeBodyPart();
                 part2.setFileName("test.xml");
                 part2.setHeader("Content-Type", "application/xml;");
                 part2.setHeader("Content-Encoding", "gzip");
                 part2.setHeader("Content-ID", "XML");
                 part2.setHeader("Content-Transfer-Encoding", "base64");
                 
                 //1
                 compressFile("test.xml","textxml.gzip");
                 String dataXML = new String(getBytesFromFile(new File("textxml.gzip")));
                            
                 
                 DataSource ds1 = new ByteArrayDataSource(dataXML.getBytes(), "application/xml");
                 DataHandler dh1 = new DataHandler(ds1);
                 part2.setDataHandler(dh1);             
                 multipart.addBodyPart(part1);
                 multipart.addBodyPart(part2);
                 
                 msg.setContent(multipart);
                 
                 msg.writeTo(new FileOutputStream(new File("MIMEMessage.xml")));
              }catch (Exception e) {
                   // TODO: handle exception
                   e.printStackTrace();
              }
         }
         public static void ReadMail1(){
              try{
                   Properties properties = System.getProperties();
                 Session session = Session.getDefaultInstance(properties);
                 InputStream inFile = new FileInputStream(new File("MIMEMessage.xml"));
                 Message msg = new MimeMessage(session,inFile);     
                 
                Multipart multipart = (Multipart) msg.getContent();
                for (int i = 0; i < multipart.getCount(); i++) {               
                    BodyPart bodyPart = multipart.getBodyPart(i);
                    
                    Enumeration enumHeader = bodyPart.getAllHeaders();
                    String fileExt="";
                    while(enumHeader.hasMoreElements()){
                    
                         Header header = (Header) enumHeader.nextElement();
                         System.out.println(header.getName() + ":" + header.getValue());
                         if(header.getName().equalsIgnoreCase("Content-ID")){
                              if(header.getValue().equalsIgnoreCase("pdf")){
                                   fileExt=".pdf";
                              }else if(header.getValue().equalsIgnoreCase("xml")){
                                   fileExt=".xml";
                              }
                         }
                    }
                    
                    BufferedInputStream inn = new BufferedInputStream(bodyPart.getInputStream());
                    GZIPInputStream gzin = new GZIPInputStream(inn);
                    
                   
                    /*****/
                    // Open the output file
                       String target ="File"+i+fileExt;
                       OutputStream outf = new FileOutputStream(target);
    
                       // Transfer bytes from the compressed file to the output file
                       byte[] buff = new byte[128];
                       int lent;
                       while ((lent = gzin.read(buff)) > 0) {
                            outf.write(buff, 0, lent);
                       }
                       /******/               
                 
                }
                
              }catch (Exception e) {
                   // TODO: handle exception
                   e.printStackTrace();
              }
              
         }
         public static void compressFile(String input,String output) {
              try {
                   // Create the GZIP output stream                
                   OutputStream out = new GZIPOutputStream(new FileOutputStream(output));
                   out =new BufferedOutputStream(out);
                   // Open the input file
              
                   //FileInputStream in = new FileInputStream(input);
                   InputStream in = new BufferedInputStream(new FileInputStream(input));
    
                   // Transfer bytes from the input file to the GZIP output stream
                   
                   byte[] buf = new byte[524288];
                   /*int len;
                   while ((len = in.read(buf)) > 0) {
                        out.write(buf, 0, len);
                   }*/
                   
                   
                   int count;
                   while((count = in.read(buf, 0, 524288)) != -1) {
                        System.out.println(new String(buf, 0, count));
                        out.write(buf, 0, count);
                }
                   out.flush();
                   in.close();
    
                   // Complete the GZIP file
                   //out.finish();
                   out.close();               
              } catch (Exception e) {
                   e.printStackTrace();
              }
         }
         public static byte[] getBytesFromFile(File file) throws IOException {
            InputStream is = new FileInputStream(file);
        
            // Get the size of the file
            long length = file.length();
        
            if (length > Integer.MAX_VALUE) {
                // File is too large
            }
            System.out.println("File Len : " + length);
            // Create the byte array to hold the data
            byte[] bytes = new byte[(int)length];
        
            // Read in the bytes
            int offset = 0;
            int numRead = 0;
            while (offset < bytes.length
                   && (numRead=is.read(bytes, offset, bytes.length-offset)) >= 0) {
                offset += numRead;
            }
            System.out.println("offset : " + offset);
            // Ensure all the bytes have been read in
            if (offset < bytes.length) {
                throw new IOException("Could not completely read file "+file.getName());
            }
        
            // Close the input stream and return bytes
            is.close();
            return bytes;
        }
    }
    Please help me as soon as possible.

    Published by: sabre150 on February 10, 2011 01:50

    Moderator action: adding the tags [code] to make the code readable.

    String is not a container suitable for binary data, so unless the two lines

                 compressFile("test.pdf","testpdf.gzip");
                 String encodedData = new String(getBytesFromFile(new File("testpdf.gzip")));
    

    in fact, Base64 encode the contents of the file you are probably corrupt your files.

    I think you should be the Base64 encoding of the compressed file and changing the mime type to reflect that.

  • How to insert images as .jpg... gif attach file in email without any accessories

    Hi, this is Terry

    I would to know how to insert images on the part of email without an attachmenk.

    Thank you

    Tanveer Rauf

    An inserted picture is an attachment.  The embedded image is sent as an attachment and then it is returned in the message in an HTML message, but it is still an attachment to the message.

    In Outlook Express, you can embed a picture compose a new message in HTML then using Insert | Photo.  Who will integrate the image in the email, but it always comes as an image as an attachment.  It's just the way OE manages which shows as embedded.

    Alternatively, you can just link to an image by referencing a URL to the image on a website and this way no image will actually be embedded or attached.

    Steve

  • Error message: "an internal support function returned an error" trying to attach files in emails.

    Original title: Error message-not invited

    Trying to electronic. Error message: 'an internal support function returned an error.'

    Hello

    Which email client you are using?

    If you are facing the issue in Microsoft Office, you can post your question in the Microsoft Office community & get help support professionals.

    Hope the helps of information.

    Please post back and we do know.

  • Folder not visible when I try to download or attach files

    I don't see an important folder when I try to attach files to emails or download on internet sites.

    I see if I Show hidden files and folders in Folder Options, but I don't want to set permanently.

    The folder does not have hidden set in properties. I see perfectly in Explorer. Something changed - as the 'upgrade' forced to Outlook or him forced 'upgrade' to IE10?

    TIA

    Outlook is part of a few suites MS Office, or individual purchase.

    Outlook.com is a replacement for Hotmail and are accessible via your browser

    MS, in wisdom here apparently thought that the .com suffix was not enough to draw a distinction between two totally disconnected programs.

    If you browse the libraries is indicated the Art file?

    And if within libraries if you open Documents up in "includes x locations clicking done sites that show the path of C:\Users\Admin\My Documents?

  • Cannot attach files in any email AOL, yahoo or the company. Also only shows blank page when access yahoo email.

    In any web mail program AOL, Yahoo, my companies, you cannot attach files when you compose an email. By the icon/button attach it says "no file selected" (or when you switch on it). This also happens in safe mode. The browser speed is also very slow. Once logged into my yahoo mail, I get a blank page. In the title bar, it says I have x amount of email.

    I reinstalled Firefox and for about 60 seconds, it was fast and yahoo opens up very well and I was able to reach yahoo emails and on behalf of my company. After this he returned to its slow and not be attached and yahoo opening a blank page.

    I have run spybot and deleted and malicious software threats found them all. I think something infects Firefox. IE and Chrome do not have this problem. Any help would be appreciated as I am at a loss.

    antivirus was not a problem since it was not installed. Firewall settings are fine. I just finally solve this problem. SpyHunter was able to detect two of the hijackers that other programs do not have, and this fixes the problem. As I said in the original post I did not suspect that this was the problem. The lesson is to run several malware programs, until you find one that eliminates the problem, if you think that malware as the problem.

  • I can't attach files, images (small) in my outlook email and my yahoo email.

    For some reason any during the last weeks, I can't attach files, images (small) in my outlook email and my yahoo email, I use the same laptop, when try to attach a file of page 2 on outlook it just stops and restarts again and I lose the content of emails? Yahoo, when the file begins to load just guard loading until I have cancel, very strange. I can not send attachments to jobs and images to family.

    Please Help............................................ Very frustrating...

    Original title: emails and attachments

    Hi Keith,

    We apologize for the inconvenience. I appreciate if you could help me with more information.

    1. what browser you use on the computer?

    2 is this problem specific to a particular or secondary file?

    3. What antivirus application is installed on the computer?

    If you are facing this problem when using your emails in Internet Explorer, try the following steps. This problem may occur because of installed modules, infection by the virus or corrupted Internet Explorer files.

    As a first step of troubleshooting, I suggest that you optimize your browser to ensure that this help is not to question. Please see the link below:

    How to optimize Internet Explorer

    http://support.Microsoft.com/kb/936213/ro

    Note: Reset the Internet Explorer settings can reset security settings or privacy settings that you have added to the list of Trusted Sites. Reset the Internet Explorer settings can also reset parental control settings. We recommend that you note these sites before you use the reset Internet Explorer settings.

    You can also check for virus running scan for viruses using the Microsoft Security Scanner, which would help us to get rid of virus software spyware and other malicious software.

    Note: The data files that are infected must be cleaned only by removing the file completely, which means that there is a risk of data loss.

    Let us know the status of the issue. If you need help, please after return. We will be happy to help you.

  • I received an attachment to an email that I need to read, but when I try to open it I get an error box indicating that this file does not have a program associated with it.

    I am not computer savy and don't know how to find a program that will help me to open an RTF file. It is an attachment to an email that I really need to open. How can I solve this problem? Thank you

    Save the attachment in your documents folder. Can still be there, and double-click it. If there is no program associated with the RTF files, you will be asked to choose a default program. The choice of WordPad.

  • Problem opening of files from the two account email, secondary remembered as HDD and USB memory-based external excel...

    Problem opening of files from the two account email, secondary remembered as HDD and USB memory-based external excel. Message warning "there was a problem sending the command to the program".  I use Windows 7, version studend of microsoft office 2007.  This problem does not exist when I use the same USB on the desktop (XP)

    You should not actuall open/edit an attachment or a file on a USB drive, the file must be saved to a document on the PC first and opened/edited location.

    http://support.Microsoft.com/kb/211494

  • I tried to open a Word doc attachment in my email and get a window stating "Creating an Adobe PDF file"

    When I try to open an attachment in my email Word doc I get a dialog box saying "Create Adobe PDF, PDFMaker missing files, you want to run the installer in repair mode?"   I tried not to convert a word in a PDF doc daughter.  I just tried to open the word document.  The next window that appears is the Adobe Acrobat window.  If I want to open a word doc file that I received in my email I first have to register the word doc on my desk open my program Word, then drag the Word doc recorded from my office to the document that is open in Word. program.  It started just in the last few months.  Never happened before.  What is happening here?

    Apparently, you tried to open a DOC file to PDF quite awhile, and your system is confused. In any case, go to a DOC or DOCX file (or both) in the Windows Explorer and right click. Select open with and select WORD - always check open with button.

    Check that the other WORD documents open correctly from the Explorer. Try again your e-mail address. If e-mail is not fixed, then look in the list of applications in your email inbox (some do) and fix the problem here. It might also be useful by turning on the display of extensions in Explorer, so you can see that a file is in fact a word with the appropriate extension. (just try to cover as many opportunities as possible now).

  • When I get an e-mail as a file attached to an email TB renames 'ForwardedMessage.eml '. Why does do this and avoid this from happening?

    For example the email that my colleague sent me from Outlook included two attachments that were emails. In the partial screenshot attached 04.a RE startup files (from Squirrelmail): project and 05. AW:FW:ISAP. When I look at this mail TB two attachments are named "ForwardedMessage.eml". Can I do to fix this?

    If the source is Outlook, it will be how Outlook encodes information. Check the mime type of attached files in the source of the message and that the information is complete and accurate. Microsoft have a bad habit to convey everything that the Content-Type: application/octet-stream; instead of more specific and more precise mime, tape for example Content-Type: application/pdf and expected the rest of the world to code around their negligence.

Maybe you are looking for