All of a sudden I am unable to attach a file to my email without compressing

All of a sudden I am unable to attach a file to my email without compressing. The email will show no attached file and then freezes and I am unable to add any content to body of email or change any of the content. I have to just delete the email and start over. If I zip the file it will show up in the body of the email and I am able to add content and send the email. This just stared happening, I had not changed any preferences or anything so I have no idea what happened.

Want to explain - makes no sense  since they share the exact same library
It actually that details are critical since we know nothing about your configuration or situation except what you choose to share with us  --  including what "everything you can think of" is
LN

Similar Messages

  • All of a sudden when i try to attach an iphoto to an email or facebook i get a message that say i need  i photo 5 or later and my pictures are not available

    First I have Mac OSX 10.6.8
    I photo 8.1.2
    All of a sudden when I attempt to download a photo from Iphoto to an email attachment or to facebook, I get a message that says I need to :
    "open Iphoto 5 or later to see photos from your Iphoto library in this list" it shows in light grey.
    AS I mentioned above, I have 8.1.2 and my photos are all available when I go to the photo app.
    I read to delete iphoto from the library which i did but that didn't help and maybe was a mistake? And if it was how do I fix that?
    I have searched the web to no resolve. I also see that I do not have the latest version of iphoto but when I check for updates it says there are none available.
    What happened and how can I fix it! HELP!
    I'm not very computer savvy so I appreciate simple instructions.
    Thank you!

    1. Try reinstall iLIfe 09 from your install disk
    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2. Download it from the App Store to reinstall It's on your Purchases List* there.
    For older versions that have been installed from Disk you'll need these additional steps:
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    2c: on 10.7 or later they're at
    /private/var/db/receipts
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    *Sometimes iPhoto is not visible on the Purchases List. it may be hidden. See this article for details on how to unhide it.
    http://support.apple.com/kb/HT4928
    One question often asked: Will I lose my Photos if I reinstall?
    iPhoto the application and the iPhoto Library are two different parts of the iPhoto programme. So, reinstalling the app should not affect the Library. BUT you should always have a back up before doing this kind of work. Always.
    If that fails, then you're reinstalling the OS.

  • Iam unable to attach multiple files to a email using javamail?

    Hai to all,
    Sorry that snipnet is for only one attachment ,
    iam sending my topic again,plese go through it.
    Iam unable to send multiple attachments with a email,see
    iam have succeeded in sending one attachment with a email.
    when iam tring to add two or more attachments to a mail,
    it is giving a Exception like this:
    javax.mail.MessagingException: IOException while sending message;
    nested exception is:
    java.io.IOException: No content
    at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:577)
    at javax.mail.Transport.send0(Transport.java:151)
    at javax.mail.Transport.send(Transport.java:80)
    at AttachFilesModified.sendMail(AttachFilesModified.java:185)
    at AttachFilesModified.main(AttachFilesModified.java:43)
    this is my code snipnet:
    BodyPart messageBodyPart = new MimeBodyPart();
    Multipart multipart = new MimeMultipart();
    if(body != null)
    messageBodyPart.setText(body);
    multipart.addBodyPart(messageBodyPart);
    /*if(attachments != null)
    for(int i = 0; i < attachments.length; i++)
    String filename="D:\\nagaraju\\apachi\\axis-bin-1_3.zip";
    //String s[]=filename.split("\\");
    //System.out.println(s);
    //String s1=s[1];
    //String filename1=s[s.length-1];
    messageBodyPart = new MimeBodyPart();
    DataSource source = new FileDataSource(filename);
    messageBodyPart.setDataHandler(new DataHandler(source));
    messageBodyPart.setFileName(filename);
    multipart.addBodyPart(messageBodyPart);
    //second file attaching
    String filename1="C:\\nagadoc.txt";
    BodyPart messageBodyPart1=new MimeBodyPart();
    DataSource source1=new FileDataSource(filename1);
    messageBodyPart.setDataHandler(new DataHandler(source1));
    messageBodyPart.setFileName(filename1);
    multipart.addBodyPart(messageBodyPart1);
    mess.setContent(multipart);
    Address[] allRecips = mess.getAllRecipients();
    if(toStdOut)
    System.out.println("done.");
    //System.out.println("Sending message (\"" + mess.getSubject().substring(0,10) + "...\") to :");
    System.out.println("Sending message................");
    for(int i = 0; i < allRecips.length; i++)
    System.out.print(allRecips + ";");
    System.out.println("...");
    Transport.send(mess);
    if(toStdOut)
    System.out.println("done.");
    return 0;
    What's wrng with that code snipnet?
    Nagaraju G.

    This works fine with me, try it or compare it if you want.
    public void sendEmail( String from, String to,
    String subject, String body) {
    fMailServerConfig.put("mail.smtp.host", " <<mail server>>");
    Session session = Session.getDefaultInstance( fMailServerConfig, null );
    MimeMessage message = new MimeMessage( session );
    try {
    message.setFrom(new InternetAddress(from));
    message.setRecipient(Message.RecipientType.TO,
    new InternetAddress(to));
    message.setSubject( subject);
    message.setText( body);
    //Adds Attechment:
    Multipart multipart = new MimeMultipart();
    BodyPart messageBodyPart = new MimeBodyPart();
    messageBodyPart.setText("Here are my attachments");
    multipart.addBodyPart(messageBodyPart);
    messageBodyPart = new MimeBodyPart();
    //first attachment
    DataSource source = new FileDataSource("C:\\img1.jpg");
    messageBodyPart.setDataHandler(new DataHandler(source));
    messageBodyPart.setFileName("C:\\Telnor1.jpg");
    multipart.addBodyPart(messageBodyPart);
    //Second attachment
    DataSource source2 = new FileDataSource("C:\\img2.jpg");
    messageBodyPart.setDataHandler(new DataHandler(source2));
    messageBodyPart.setFileName("C:\\Telnor2.jpg");
    multipart.addBodyPart(messageBodyPart);
    //etc...
    message.setContent(multipart);
    Transport.send( message );
    }catch (MessagingException e){
    System.err.println("Cant send mail. " + e);
    The error on your code might be:
    BodyPart messageBodyPart1=new MimeBodyPart();
    DataSource source1=new FileDataSource(filename1);
    messageBodyPart.setDataHandler(new DataHandler(source1));
    messageBodyPart.setFileName(filename1);
    multipart.addBodyPart(messageBodyPart1);
    You don't need to create a new BodyPart, and apart from that you'r seting values on "messageBodyPart" but adding "messageBodyPart1" to your multipart :P
    Well see u and have a good one!
    p.s. i know it's a little late from the day you posted, but at least it might help somebody else :D .

  • Unable to attach a file to the email

    I am trying to attach a file using mail.app. When I click on attach(paper clip icon) then I am unable to traverse down to a sub-directory and to a file, instead mail.app attach the entire directory as an attachment. Is this a limitation with OS X? Again I tried the same with Sparrow to no avail.
    Only way is to open a finder window and drag file to the email message.
    Any ideas or help would be greatly appreciated?
    Thanks,
    Paddy

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of this exercise is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login. Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows:
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear).
    *Note: If FileVault is enabled under Mac OS X 10.7 or later, you can’t boot in safe mode.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem(s)?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Unable to attach multiple files to an email in Safari using Macbook Pro 2011

    Is anyone else having this issue?  Safari won't let me select multiple files to attach to an email.  I can attach more than one file, but I have to attach them one at a time.  Is there a setting I need to change or something??

    I am having exactly the same issue as debsdesign.  The email I am using is yahoo.  I've tried both Safari and Firefox and it makes no difference.  I am using Mac OS X Lion 10.7.5.
    So to reiterate the problem - I want to attach multiple files at once to an email message I want to send.  I have tried to do the following:
    1. Select 'Attach file" in my email message
    2. In 'Finder' I have found a list of files I want to attach
    3. I can only select one file at a time and "choose" them individually - I have 16 files.  I have tried holding down the SHIFT key and selecting the last file in the list.  I have also tried holding down the COMMAND key and selecting each file in turn.  Nothing works!
    Is there a way to do this on a Mac??
    Many thanks

  • I am unable to attach a file to an email

    I have been able to find the file to be attached, highlight it and click open but with no result.

    Hello, Firefox's pop-up blocker may have prevented the file upload window from opening. Please try adding Gmail to your list of allowed sites by following the steps below:
    # Click on the 3-bar menu button and choose '''Options'''.
    # Select the '''Content panel'''.
    # Click on the '''Exceptions''' button next to Block pop-up windows.
    # In the Allowed Sites window, type in mail.google.com in the address field, then click '''Allow''' to add it to the list.
    # Click '''Close''' to finish.
    '''EDIT: try one more time before the above suggestion.'''
    thank you

  • I suddenly cannot attach any file to an email whilst using Firefox 5.

    My preferred browser is Firefox 5, which I have been using trouble-free until now. All of the sudden, I am unable to attach any file to an email. I simply get a file loading attempt that never times out. At first I thought it was a Yahoo problem, but my work email server will not add attachments either. I downloaded Google Chrome just now as a test, and still can't add attachments. Might this be a Windows problem? Anyone run into this? Thank you. I am my own IT department and it is sad... Katherine

    Try clearing your browser cache.
    Tools > Clear Recent History... - hit Details and make sure only Cache is selected, then select Everything and hit the Clear Now button.

  • On my imac, All of a sudden I am unable to send original emails with any attachments.  I can attach the file but when I try to send it, it won't send.  Also, if I am emailing back and forth as it gets longer, it no longer transmits

    On my imax, all of a sudden I am unable to send original emails with attachments of any size.  I can attached the file but when I try to transmit, it will not go.
    Also, if I am emailing back and forth, once there gets to be several threads, it will no longer transmit.  Any suggestions. I am using gmail in the apple mail system

    Mike,
    Are any of your other applications going wonky, or is it just Logic?
    I'm afraid I've never heard of this particular problem before, but if it were happening to me the first thing I would do is delete my "com.apple.logic.express.plist" file in Library>Preferences, then repair permissions in Disc Utility, and finally restart my computer.  Then I would launch Logic and see if the problem has been corrected.  It's amazing how much these two steps can accomplish.
    If that doesn't resolve the issue I would launch Logic and go to Preferences>Audio Units Manager to see if all my plug-ins are properly validated.

  • I have a 13 inch Macbook Pro. I have bought it just 5 months back. All of a sudden, i am unable to turn the mac on. It doesn't even get Charged. What could be the issue ?

    I have a 13 inch Macbook Pro. I have bought it just 5 months back. All of a sudden, i am unable to turn the mac on. It doesn't even get Charged. What could be the issue ?

    If you're unable to turn it on, let alone even charge it then it definitely sounds like a battery issue to me. I'd wait for someone else to reply just to be sure but I think somehow the battery by the sounds of it must have died. However, I could be very wrong.
    If you're still under applecare which you should be then it should be an easy free fix. Hope this helps!

  • All of a sudden I am unable to access my college email from any of my apple devices (iPhone, iPad, macbook pro). I am able to access from my husband's HP windows laptop and from a Mac computer at the college.

    All of a sudden I am unable to access my college email from any of my apple devices (iPhone, iPad, Macbook Pro). I am able to get access from my husband's HP windows laptop and from a Mac at the college. Any ideas?

    http://support.apple.com/kb/HT5621
    In short, you have a problem we can't solve.
    I suggest you contact Apple support and make an appointment to get help.  Expect to pay for it.

  • All of a sudden I am unable to receive e-mail through comcast on my PC. I am able to send e-mail. I can receive comcast e-mail on my phone and tablet

    All of a sudden I am unable to receive e-mail through comcast on my PC. I am able to send e-mail. I can receive comcast e-mail on my phone and tablet. One help topic suggested I delete the password for my comcast mail and that I would be prompted to set up a new password. No such prompt appeared. I am wondering about help for this problem. I'm also wondering if I can delete the account nd add it again and what would be the ramifications of doing so.

    check the settings in your  mail settings, outgoing server.  If your ipad is ok, compare the settings with the ones on the phone

  • I have been using the Adobe Digital for years.  All of a sudden, I am unable to complete a download

    I have been using Adobe Digital for years.  All of a sudden , I am unable to complete a download from my library to the Adobe Digital.  Can anyone help?

    Has anything happened like an update to Digital Editions?
    Two possibilities come to mind:
    between them they are the answer to a large number of ADE problems, but I can't promise they will help in your case.
    Also, a third possibility at the bottom.
    1) ~~~~~
    Sometimes ADE gets its registration/activation confused and in a semi-authorized state.
    Uninstalling and reinstalling does not help.
    Unfortunately, it often then gives misleading error messages about what is wrong.
    A common incorrect message informs you that the ID is already in use on another computer and cannot be reused.
    This can often be resolved by completely removing any authorization using ctrl-shift-D to the Library screen on ADE (cmd-shift-D if on Mac).
    Restart ADE, and then reauthorize with your (old) Adobe ID.
    In extreme cases on the mac, the following extra step has helped some people.  Navigate to /Users//Library/Application Support/Adobe/Digital Editions and drag the activation.dat file to the trash. If you are using 10.7, see Access hidden user library files | Mac OS 10.7 Lion. http://forums.adobe.com/thread/1265248?tstart=0
    2) ~~~~~~~~~
    There are lots of bugs in ADE2.0 (and 2.0.1).  Try replacing ADE2.0 with the older but more reliable v1.7.2.
    (You can have them both installed at once if you like.)
    Version 1.7.2, it is a little difficult to find, available on Adobe site for Windows and for Mac.
    http://helpx.adobe.com/digital-editions/kb/cant-install-digital-editions.html
    The forum software is sometimes corrupting the link above.  There shouldn't be a blank in 'editio ns.html'.  The following redirects to the same page: http://tinyurl.com/diged172
    3) ~~~~~~~~~~
    extension of (2).  ADE2.0 will often not work with Overdrive library books if a Sony eReader is plugged in.
    It isn't just that it won't interact with the Sony, it won't even operate properly on the book within ADE on the computer.

  • After the recent update, my documents moved from Finder to Word.  When I moved the folders to Finder, I am unable to attach a file to an e-mail.  Any Suggestions?

    After the recent update, my documents moved from Finder to Word.  When I moved the folders to Finder, I am unable to attach a file to an e-mail.  Any Suggestions?

    Back up all data.
    Triple-click the line of text below to select it, the copy the selected text to the Clipboard (command-C):
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste (command-V) into the text box that opens, then press return.
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    I've seen an unconfirmed report that the "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you might need to remove it as well, if applicable.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • I am unable to attach documents to a yahoo email from my macbook pro can anyone advice me what i need to do to address this please?

    Hi there;
    For some reason I am unable to attach documents to a yahoo email from my macbook pro. I do not experience this problem on a nomal PC and i can even open attachments on the mac. However on trying to attach a document to an email it keeps coming up wth an error stating ''invalid file selected'' each time i tr. Can anyone advice me what i need to do to address this please?
    many thanks

    Since your Mac probably came with 10.4, there is no longer a way to get 10.5 Leopard install media. IF it has the requirements, you may be able to upgrade to 10.6 Snow Leopard by buying the boxed install media at the Apple Store for $30.
    System requirements are found here: http://support.apple.com/kb/SP575
    General support can be found here: http://www.apple.com/support/snowleopard/

  • Why,suddenly this morning, I cannot attach a photo to my email.

    suddenly this morning I cannot attach a photo to my email. When I click on the paper clip (to attach a photo) nothing happens. I can attach photos using chrome so I am thinking it must be something went arye with mozilla. It worked fine last evening.

    Gmail? For now, you have to allow pop-ups for google.com to work around some change in Gmail.
    While you have the compose window on the screen, click the padlock in the address bar.
    * If the pop-up permission is listed there as Block, change it to Allow.
    * If the pop-up permission is not listed there, click More Information to launch the Page Info dialog, then click Permissions in the top bar. Scroll down to "Open pop-up windows", uncheck the box for "Set default" then click Allow and close the dialog.
    Then try the paper clip again.
    Google should at some point provide an update on how it will resolve this in the main thread here: https://productforums.google.com/d/topic/gmail/q0BxcGOa6pk/discussion

Maybe you are looking for

  • Problems with existing stock and batch management indicator

    Hi, We would like to set the batch management indicator for a material. However, there is stock on the material for the given plant. The different stock categories for the plant/material combination are as follows (according to transaction MMBE): Unr

  • How do you connect AX as a remote to AE/WPA network?

    When configuring my AX as a remote for my AE configured with WPA the AX blinks amber and does not find the network. All firmware is the latest version. Any ideas appreciated? Thanks Powerbook G4   Mac OS X (10.4.9)   Wireless Airport

  • I want to view my library as a file

    Can I save my library as a file? That way, I have a list of all my songs/artists etc? I need this for my other computers so when I'm downloading songs I can see if I have it already.

  • Calling Stored procedure from MS Access

    Hi! Please help me to understand if possible. I am migrating from accdb (Access 2007) to MSSQL BE and trying to rewrite queries due to performance problem. My question is that I need to use Stored Procedure and call it from Access. I created simple s

  • Apple TV (black) resets itself while streaming music

    My WiFi signal is strong and there is no other nearby interference, but my Apple TV resets or reboots itself EVERY TIME I stream music. I have no problems streaming photos, movies or TV show and all internet content (Netflix, radio, podcasts, etc.) w