Mail - Attachments and Outbox

On opening mail the software occasionally creates the Outbox and randomly places a message, (usually one that I have received or one from an RSS feed), in the Outbox even though there were no messages waiting or drafts when I last closed Mail. In addition when creating a message with an attachment the following message displays when I check the attachment contents with Word, Quick Look etc. before sending;
Mail was unable to save the attachment “Invoice 51.doc” to disk. Verify that your downloads folder exists and is writable".
The Mail Downloads folder in user/library is writable.
Any ideas how to solve?

Phil,
Good to have posted in the better forum for your questions.
I am not sure I have seen anything like the report about the Outbox -- it does not get created, but rather only displays when something is in it that has not been sent. For that, I would try quitting Mail, and in the Finder open Home/Library/Mail/Mailboxes and delete the Outbox.mbox folder. Mail will create a new one when you next relaunch Mail, and then send a message. If there is something corrupt about the existing one, that would correct.
You should now read through some other topics, and then post back in this one any differences you note between your experience and those already reported. See among several, the following topics:
http://discussions.apple.com/thread.jspa?threadID=2137407&tstart=0
http://discussions.apple.com/thread.jspa?threadID=2172635&tstart=100
Ernie

Similar Messages

  • Mail attachments and forwarding as attachments

    Since upgrading to Yosimite 10.10.1 Mail will not work with attachments saying that it cannot find the downloads folder.  If you forward as an attachment the icon is not in mail format or recognised.

    Hi Chateaubugs
    Open Mail.app, make sure you see the Message Viewer window.
    Click on the menu Edit > Attachments and enable
    - Always send windows-friendly attachments
    - Always insert attachment at the end of the message.
    Outlook is not good at showing embedded media content from Mail.app. It likes to have them, where it's expecting them - at the end of a message.
    A hint: Make sure you have at least a part of your message (for example your signature) typed before you attach a file to a message. This is because of a small issue when attaching mails at the end of a message: If you have nothing typed, there is no end to attach to. It will fail.
    hth
    --greg

  • Mail Sending and Outbox errors

    I tried to look through old threads and find an answer to my question, but I haven't really read anything about how to fix this problem. I set up my Mail at the beginning of the summer when I got my MacBook with info for my Gmail email account. Everything was fine and I was able to send/reply/forward messages to other people. However, I just started school at UMBC and at first I was able to send. However, for the past two days my sent messages are not being sent and are being clogged in my Outbox. When I check my preferences, I see that my outgoing mail server reads "Gmail (offline)". I'm still getting incoming mail, but I'm not sure how to fix the "offline" problem. I've tried restarting the program and my computer, but the same keeps occurring.
    The only thing I can think of is that to use UMBC's internet, you have to go through the intranet login pages first. I'm not sure if it's causing it or not, but it's becoming very inconvenient for me to have to open Gmail on the web and send my messages through there rather than through Mail.
    Please help if you have any ideas! I'll keep checking the thread so I can provide with further information if needed.

    Okay, I got mine to send (still shows as GMail Offline, though). Found this fix on the thread
    http://discussions.apple.com/thread.jspa?threadID=1685517&tstart=30
    The post by Nathan C. (the rest of the thread was not helpful).
    The solution seems to be to set the outgoing mail server (smpt.gmail.com) port to 587 instead of 25.
    Hope this helps you too!

  • Applescript with Mail attachments and shell scripts (pdftk)

    I'm trying to create a script that I can call using mail rules that will:
    1. save an attached PDF file to a folder (folder name is 'PDFs_from_Mail:')
    2. save each page of the PDF as a separate file
    3. delete the old file
    so far, i used the script below called from mail to save the attachments to the
    -- script called from mail
    using terms from application"Mail"
      onperform mail action with messages theMessages
        tell application"Finder" to set ptd to (path to desktopfolder) as string
        tell application"Finder" to set pathToAttachments to(path to desktop folder as string) &"PDFs_from_Mail:"
        tell application"Mail"
           repeatwith theMessage in theMessages
                if theMessage's mailattachments is not {} then
                      repeatwith theAttachment in theMessage's mailattachments
                            settheFileName to pathToAttachments & theAttachment's name
                            try
                                     save theAttachment in theFileName
                              onerror errnum
                            endtry
                      endrepeat
                end if
             endrepeat
          end tell
      endperform mail action with messages
    end usingterms from
    tell application"Mail"
        setmyMessages to selection
        tellme to perform mail action with messages myMessages
    end tell
    -- end of script called from mail
    after the file is in the folder, i'd like to automatically call a script that splits it in to pages and saves each file.  I found pdftk can do what I need.  I got the following working, which uses a folder action script to process the file:
    -- burst script
    on addingfolder items to this_folder after receiving added_items
       tellapplication "Finder"
           set fold_name tothe name of this_folder
               try
                   repeatwith i from 1 to number ofitems in added_items
                          set theFile toitem i of added_items
                          set oldDelimiters toAppleScript's text item delimiters
                          set AppleScript's textitem delimiters to {":"}
                          set theFolder to(((text items 1 thru ((count everytext item of (theFile asstring)) -1)) of (theFile asstring))) as string
                          set AppleScript's textitem delimiters to oldDelimiters
                                --get the file name
                                   set theFileName to the name of theFile
                                                     do shell script"/usr/local/bin/pdftk " & (POSIX path oftheFile) & " burst output " & (POSIXpath of theFolder) & "/" & theFileName &"_%03d.pdf"
                                                      delete theFile
                                                    endrepeat
                                        end try
                         endtell
    end adding folder items to
    -- end burst script
    the shell script that is called is in the format:
    pdftk myfile.pdf burst
    the output parameter basically adds the page number to the end of the original filename for each file that is created
    my idea was to attach the folder action script to the 'PDFs_from_Mail' folder, and when the first script is called, the file would be saved to that folder and trigger the folder action script burst the file.  it works for individual messages, but when I try using it with the hundreds of messages that I have, all kinds of crazy things happen... the filenames are all wrong and it seems like it goes on infinitely.
    My familiarity with applescript is somewhat limited (as you may have guessed) and I'm wondering if there is a better approach.  perhaps if I incorporate the shell script into the script called from mail it may streamline everything.
    my problem is that I am not sure what code I need to keep in each script.
    can anyone take a quick look at this and give me some advice?
    my goal is to have these individual pages in a folder so that I can use quick view to page through them.  if the pdf is more than one page, then I have to get involved in scrolling up/down and it becomes difficult to find things efficiently.
    thanks!

    just a quick update and a general questions about applescripting with shell scripts...
    i attached the above folder action burst script to a folder, and have been dragging pdf files into it, one at a time.
    sometimes the script runs fine and the new files are created and the old pdf is deleted.  other times, there is a long delay between when I drop a pdf file into the folder and when the new files are created.  and sometimes nothing even happens at all (uaually if i dont wait for at least 30 seconds or so between dropping the files in the folder).  I also noticed that the window title text (area showing the folder name at the top of the finder window) becomes grayed out when the script is running and sometimes it remains grayed out for a few minutes after the script has run.
    could it be that the shell script just takes a really long time to work?  i am afraid to drop more than one file at a time as the last time I tried that the output was all wrong and I had to force quit processes and shut down. 

  • Why can't i download e-mail attachments and images from the web using firefox browser

    i am using a Mac laptop.
    when i try to download my e-maill attachments, the Download tab appears. but when i click the download "key", nothing happens.
    i also can't save images from the web using firefox. the Save this Image tab appears but when i try to save, nothing happens.
    when i check on my Downloads folder, only unreadable files like these appear:
    1ttOnsY3.doc.part
    2Sf9jyNT.doc.part
    62+fxHoe.doc.part
    ASx1ZO9N.xls.part
    BtRlxR4R.exe.part
    dZmKC1nU.doc.part
    ehmb9rox.doc.part
    FJx+ku02.doc.part
    FSR7ckkV.doc.part
    hvlqg5Qy.exe.part
    JwVExec0.doc.part
    KEBM+klW.doc.part
    but when i try to use my Safari browser, download is successful.
    ive tried reinstalling my Firefox (version 3.6) but to no avail

    Not all 10g links are wrong however a number of them are as follows:
    Oracle ADF Installer (10.1.3.2) (Version 10.1.3.2, build 4066)
    Oracle ADF Installer (10.1.3.1) (Version 10.1.3.1, build 3984)
    Oracle JDeveloper 10g (Version 10.1.2.3, build 1936)
    Oracle JDeveloper 10g (Version 10.1.2.2, build 1929)
    Oracle JDeveloper 10g (Version 10.1.2.1, build 1913)
    Oracle JDeveloper 10g (Version 10.1.2, build 1811)
    All update this post once resolved.
    Thanks for the notification

  • When I receive e-mails w/ attachments in PDF they show up as win.dat attachments and will not open w/ Acrobat

    When I receive e-mails in Mail w/ PDF attachments they appear as win.dat attachments and will not open w/ Acobat Reader or Professional.

    Search....
    http://lmgtfy.com/?q=winmail.dat+mac

  • Messages stuck in outbox when using "Send to Mail recipient" and outlook is closed

    A user who uses RPC over https all the time on his desktop in the office. In general
    he has no problem to send/receive emails. But when he tried to send a File through right click - > send to -> Mail recipient , New Email window opens and He changes
    the subject and add receipt and send email when outlook is close. The email stuck in outbox.
    any idea and how to fix it?
    Thanks in advance. 

    Hi,
    As what Roady says, it is an expected behavior. This is because the
    “spooler” which is something that manages the MAPI transports is working when Outlook is running. So when you sending messages when Outlook is not running, there is no spooler running, and so nothing is going to send your mail. The next time you launch Outlook,
    you will see the mail in the Outbox.
    For more information about this behavior, please refer to A trip back in time—the evolution of Outlook part of the following link:
    http://blogs.technet.com/b/office_resource_kit/archive/2013/08/15/the-mysterious-outlook-outbox.aspx
    Regards,
    Winnie Liang
    TechNet Community Support

  • I receive e-mail attachments " win mail.dat" from iPhones and iPads.All I can find is that Outlook users send these e-mails. I found "letter opener" and it helps but I'd rather receive jpeg in stead from my Apple friends

    Last week I suddenly started receiving all e-mails with photo attachments from other iPad and iPhone users (on my iMac, iPhone as well as iPad!)  as " winmail.dat" files. It says everywhere that that is caused by Outlook users sending RTF e-mails. Obviousely that is not the case here. I found an app to open the attachments, but of course that is no real solution. I asked Android and MS Outlook users to send me e-mails with JPEG attachments and the arrive aas they should.
    Does anyone know the answer to this?
    Jos Korver

    By the way, some non-delivery receipts (NDRs) are themselves spam messages with malicious attachments designed to infect your computer, so be cautious about opening any of those.

  • My mac mail will not search mail anymore and doesn't load attachments anymore

    Does anyone know why this would be happening?
    My mac mail will not search mail anymore and doesn't load attachments most of the time.  When I enter some text in the search box no results come up and I know there are messages that contain the phrase that I've entered.
    Also about 3 weeks ago attachments only get loaded about 1/4 of the way - if that.  So I have to log onto my web based mail program from the host and retrieve attachements or check the messgae with my iphone.
    Please - does anyone know how to fix this?

    I figureed out that spotlight was turned off via terminal -  I shut it off to unmount a disk (which didn't work anyways)
    sudo mdutil -a -i on
    that's the termianl command to turn spotlight back on.  As far as my attachments not fully loading in mac mail on my iMac that still baffles me.

  • I have old QuickMail Pro on my old iMac OS 9. Can Quick Mail's inbox, outbox and sent mail be downloaded onto an external hard drive?

    I have QuickMail Pro on my old iMac OS 9. Can Quick Mail's inbox, outbox and sent mail be downloaded onto an external hard drive? If so, how? I tried to drag and drop but that didn't work.

    Ok, best to contact itunes then so they can look into it

  • When I open my e-mail attachments,they show up as a .pdf and are encoded. I have never had this problem. What do I do?

    I have had the same computer and outlook for almost a year. Today, all my e-mail attachments that I received were showing as a .pdf and when I clicked to view them, they were encoded. Please help!!

    Hi,
    What type of account did you setup in Outlook? Exchange, IMAP or POP3?
    Please go to the Webmail site, check if the attachments are still ok.
    Kindly create a new profile to setup the account again, check if the attachments are alright:
    http://support.microsoft.com/kb/829918/en-us
    Let me know the result, thanks.
    Regards,
    Melon Chen
    TechNet Community Support

  • Mail sits in outbox and doesn't send

    mail sits in outbox and doesn't send

    remember there is both a mail Sender and a mail Receiver. Receiver setup information is easy to find, but Sender setup information is a little harder to find.
    Use exactly the settings your ISP provided, or use this Apple Mail Setup Assistant. (rest assured, Apple does not use this to collect your email address.)
    https://www.apple.com/support/mail-settings-lookup/
    The easy-to-see info in Mail preferences is for your Mail Receiver. This corresponds to the top part of the box from the Apple site.
    You need to use Connection Doctor and click on the red light to get easy access to the Mail Sender info. This corresponds to the bottom part of the box from the Apple site.

  • Both inbox and outbox from Gmail ends up in my gmail/pop/mail inbox

    Both inbox and outbox from Gmail ends up in my gmail/pop/mail inbox; how to resolve?
    - So: the mail I send via gmail comes also in my inbox of mail in which I use the gmail pop account.
    Please help!

    This is a Gmail issue. Gmail POP access doesn’t work like a normal POP mail server would. Here are some of its idiosyncrasies:
    1. Messages downloaded by any conventional POP mail client are marked as downloaded at the server (but not as read on the web), and no longer available to either the same or any other POP mail client.
    2. To make already downloaded messages available for POP access again, you must go to Gmail’s Settings > Forwarding and POP page, select Enable POP for all mail, and click Save Changes, which causes everything (and I mean everything) still on the server to be downloaded again.
    3. The Mail > Preferences > Accounts > Advanced > Remove copy from server settings have absolutely no effect on the messages stored on Gmail’s server. Gmail ignores any requests to delete messages from the server made by a POP client. What happens to the messages on the server after a POP client has downloaded them is determined by Gmail’s Settings > Forwarding and POP > When messages are accessed with POP setting alone. In the case of Gmail (and only in that case), I recommend turning OFF Remove copy from server in Mail, so that Mail doesn’t even try to remove any messages from the server, regardless of whether you do actually want already downloaded messages to be removed from the server after some time or not.
    4. Messages sent using the web interface will be downloaded by your POP mail client as if they were received messages. Although this may seem weird, it's good because it allows archiving all messages locally in Mail, regardless of how they were sent — as long as you don't access the same Gmail account with more than one POP mail client, that is. You can set up a rule in Mail to automatically route those messages to the appropriate Sent mailbox (or to any other mailbox for that matter) if that's what you want.
    5. Messages sent using a POP/SMTP mail client such as Mail are also treated as if they were incoming messages for POP purposes, just as in #4. What prevents them from being downloaded is that Gmail marks them as already downloaded immediately. Since they’re on the server nonetheless, already sent messages would be downloaded together with all the other messages on the server if proceeding as described in #2.
    6. A particular case of #5 are messages sent to yourself. Instead of putting a copy of the sent message in the server’s Inbox and making it available for download, both the sent and the “received” message on the server are actually one and the same, and hence, cannot be downloaded via POP for the reason explained in #5.
    7. Gmail allows POP accounts to be set up in a special way that avoids some of these issues while introducing others. If you only need POP access to the last 30 days of mail, you can configure Mail in “recent mode”, as described in How should I use POP on mobile or multiple devices?, i.e. by typing “recent:” (including the colon but not the quotes) at the beginning of the User Name field (not in the Email Address field) in Mail > Preferences > Accounts > Account Information. Configuring the account this way would allow Mail to download messages marked by Gmail as already downloaded (and download messages sent to yourself in particular), but it would also cause all sent messages (not just messages sent to yourself or through webmail) to be downloaded as if they were received messages.

  • Whenever I forward mails I get only the subject line as forward All attachments and text is blank

    I am currently using Windows 7 - 64 bit as my operating system. Previously this was not the case. But after I changed my operating system, problem started in forwarding my mails. Whenever I forward my mails, Only the subject line is filled. All the text, attachments and pictures from original mail are not carried alongwith.
    == This happened ==
    Every time Firefox opened
    == From the very beginning

    Close out of the camera app, double tap the home button and completely close out of the app.
    Then do a reset, no data loss.  Hold down the home/sleep button together until you see the apple logo and then release, then wait for the phone to boot back up.
    Then check your camera roll again.

  • I have installed flash player 17.0.0.134 and now cant open any e-mail attachments. Can anyone help?

    I have installed flash player version 17.0.0.134 for mac and now I cant open any e-mail attachments. I have been through the checks and it is installed correctly. Can anyone help? panda

    I don't know how this works on a Mac; on Windows you need the Flash Player Projector (not the plugin) to view stand-alone SWF files: https://www.adobe.com/support/flashplayer/downloads.html

Maybe you are looking for