Batch save Mail messages as PDF's

I am in need of saving all of my email messages in my inbox as individual PDF documents. I know you can do it one at a time via "Print>save as PDF" but we are talking about a few hundred email messages here.
Is there anyway to take advantage of something like automator or could someone show me some software to batch save all of these messages?
Thanks so much for the help.
-Christian

Dansyacht wrote:
In Mail, select all the messages to print (a smart mailbox may help).  When all are selected do a file > save as (RTF or plain text).  This will create one printable file with all the messages.  You can then load this file into TextEdit and print it as a PDF.
Thanks -- this may be what I go with.  However, when I tried this the rtf file did contain all of the messages, but did not show the header information on each (To:, From:, Date: ...), so I continued my search for a solution.  I think I found something that works.  My project is actually larger than what I described.  Interested people may be able to use some or all of the following.
The project started when I asked a friend to send me all of the emails that I have sent him over the last 15 years.  He had archived them all in Windows / Outlook Express.  I had not archived them.  He was able to give me a .DBX file containing them all.  I used a free program called DbxConv in Windows to convert the .DBX file to a .MBX file.
In Apple Mail I did File/Import_Mailboxes/File_In_mbox_Format to import them.  Then, View/Organize_by_Conversation (checked on).  Select all messages and File/Print/PDF/Save_As_PDF into a new folder on the desktop.  This will generate many pdfs.
Now the new part:
Next, drag all of the PDFs into Preview.  Finally, in Preview, File/Print/PDF/Save_As_PDF.  This will create a single pdf file with all messages, including imbedded attachments, with info displayed in your current Apple Mail format -- dependent on how you like your Apple Mail messages displayed (minimal header, expanded header, etc.) . . . . .  I think!
At least it worked for me, once.  I try it again and see what develops.

Similar Messages

  • How can I save mail messages to my computer and not my mail program

    My mail program seems to be slow.  I'm not sure why.  I get the spinning ball frequently.  I need to save mail messages sometimes for a few years and there are hundreds of emails. Is it better to save them on my computer than my mail program?  I may need to retrieve them at some other time so they need to be readable.  Is that possible?
    I'm using OS X 10.9.4. I have a 3.06 GHz processor and 12 GB of memory.  Thanks

    You can select to export a folder to save as a .mbox file. This file would need to be imported if you wanted to view the messages.
    Select mailbox (folder)
    Under Mailbox in the Menu bar select Export Mailbox...
    You might also want to check out the demo for EagleFiler by the author for SpamSieve. You could view and search the messages archived in EagleFiler.
    http://c-command.com/eaglefiler/
    Regarding Mail being slow....
    Is it only Mail that is slow?  How much free space on your drive? Use Disk Utility to find available space.

  • Is anyone else having a problem sending a mail message with PDF attached?

    Is anyone else having a problem sending a mail message with PDF attached? I receive the following message:
    Sending the message content to the server failed.
    Select a different outgoing mail server from the list below or click Try Later to leave the message in your Outbox until it can be sent.
    Is there a fix for this?

    Anyone?  I was hoping my problem would just 'fix itself'...  but I still have some clients telling me they're not receiving any email from me.  I've since deleted that account on my computers and re-added it.  But still having the same issue. 

  • How can I save mail messages on iPad

    I (strictly, my wife) have just bought a WiFi-only iPad to replace an ageing MacBook, and I also have an iMac.  I have a need to store and organize a limited number of Mail messages in the iPad, such that they are available in the future when I do not have internet access - i.e. while travelling.  These are varied, but typically contain reference information, reservation details, receipts, directions, etc.
    Previously, this was easy to do with the MacBook.  I set up our GMail account as POP3, and filed such messages as we needed in as many Filed Mail mailboxes as I wanted.  Unfortunately, if you set up a Mail account as POP on the iPad, you can't define Filed Mail mailboxes.  And if you set up the account as IMAP, you don't have access to your filed mail when not connected to the internet.  So you're damned if you do, and damned if you don't.
    So here's the question.  Is there any organised way to save messages permanently on the iPad?  And any attachments need to be kept as well.  While strictly they no longer need to be in Mail format (i.e. can't be forwarded or replied to), that would be a less convenient approach, and those all-important attachments would have to be dealt with.  But I am willing to be flexible.
    And before anyone says that POP will not work with multiple devices, GMail POP has a feature that allows the same email to be downloaded to multiple devices as well as being held on the server if required, and all sent emails are also echoed back to all devices (the "recent" feature).  This has worked fantastically up to now.
    Any help would be appreciated.

    Do you need to be able to initiate this entirely from the iPad, or would it be acceptable to have to use one of your Macs when you save one of the limited number of messages? If involving a Mac would be acceptable, I can see ways to work around the iPad's lack of local mailbox storage.
    You could use one of the various free cloud storage services that allow general file storage and local retention on the iPad (for example, Dropbox or Dump Truck, but not iCloud).
    For Dropbox, you would make a folder for this cluster of saved messages inside Dropbix. For each message you want to save, create a folder inside that cluster folder, do a "Save As..." in Mac Mail.app for the text body, then a "Save Attachments..." if appropriate. (The inner folder wouldn't be strictly necessary for messages without attachments, but I suggest it for consistency.)
    The key part is to open Dropbox on the iPad and mark the message and attachments as favorites (starred). That causes Dropbox to preload them on the iPad and retain them there until they are unstarred (lose favor).
    You could probably do something similar with Evernote and favorites.

  • Export Mail messages as PDF - missing extension

    When exporting messages as PDF files, the resulting files don't seem to become proper PDF files. They show up as some generic file, illegible for Quick View and ignored by many applications as being a PDF. Forcing applications to open them as a PDF reveals that there's nothing wrong inside of it. So all it needs is a correct extension (whether or not it is shown). Adding the ".pdf" extension manually or by some batch conversion utility, immediately renders the PDF correctly.

    I figured it out.
    There was a setting in my pdf that had adobe layers on. I turned it off.
    All good now!

  • Using AppleScript to save Mail messages?

    I'm a bit of an Applescript newbie, but I'm trying to attach an AppleScript to a rule in Mail to automatically save the raw text source of certain mail messages to a folder, where I can further process them.
    Here's what I have so far. It compiles, is saved in my Mail scripts folder, and It is attached to the rule in Mail, but I get no evidence that it runs (no output file(s), no dialogs, no messages in the console or system logs).
    using terms from application "Mail"
    on perform mail action with messages theMessages
    tell application "Mail"
    repeat with eachMessage in theMessages
    save the source of eachMessage in "hd/Users/me/Desktop/slash.txt" as text
    save the source of eachMessage in "hd:Users:me:Desktop:colon.txt" as text
    end repeat
    end tell
    end perform mail action with messages
    end using terms from
    Any suggestions?
    G4 "Gigabit" Dual-500   Mac OS X (10.4.8)   1.5GB RAM, 1TB internal, SCSI, 802.11g, USB2.0

    Hi 0g,
    Automator is pretty simple compared to AppleScript. I use Automator, but I certainly could not help you with AppleScript! So I'm not sure you will find your answer here... You might, but why don't you increase your chances by posting in the AppleScript Forum here: http://discussions.apple.com/forum.jspa?forumID=724
    (You probably didn't see that one as it is hidden in the Mac OS X Technologies Category!)
    Good luck!
    Guylaine
    Mac mini Intel Core Duo 1.66 GHz 512MB DDR2 SDRAM Mac OS X (10.4.8) G4 Digital Audio Mac OS 9.2.2, iPod nano 1GB, iPod nano 4GB

  • Export mail message as PDF Applescript for mail rules

    I have looked everywhere for this and found nothing. I don't have 40 hours to learn applescript myself but from the little I do know this should be possible. Probably easy.
    I want to created an applescript to run as a mail rule. I want the script to export the message as a PDF and move that PDF to a specified folder. Hazel can take it from there.
    for instance:
    Fedex sends me a email message that my shipment has been delivered.
    mail rule kicks in and runs the script
    script creates a PDF of the message
    message is moved to "fedex delivered" folder

    I found a workaround, though there must be something neater.
    I added this before my script
    tell application "System Events"
              tell process "Mail"
                        tell menu bar 1
                                  tell menu bar item "View"
                                            tell menu "View"
                                                      tell menu item "Sort By"
                                                                tell menu "Sort By"
                                                                          click menu item "Subject"
                                                                end tell
                                                      end tell
                                            end tell
                                  end tell
                        end tell
              end tell
    end tell
    then the same except "Date" instead of "Subject".
    My script does what i want now.

  • Mail suddenly not exporting messages as PDFs

    I think this is related to recently upgrading to OS X 10.9.3, but lately Mail seems unable to export a mail message to PDF.  I just started using this feature a few weeks ago regularly and now I am unable to use it.  I am almost dependant on this feature now too. 
    When I select Mail > File > Export to PDF it shows the box to enter the file name to save to, but when I do so, suddenly it pops me over to the Print dialog box.  When I select Cancel to cancel printing, it puts me back at the beginning with no exported file.

    I did not know that.  I've had Macs since 2005 though I've never really learned much about the opersating system enviroment itself. Such knowledge I'm sure would help me out if I took the time.
    Regarding all those things you suggested, haha, I was already just doing all that, likely while you were typing that out.  I tried a new folder in finder, tried moving the files to it.  I could move the files but would stilll get the print dialog box when trying to save to PDF.
    Okay, so here's another development.  I've tried adding another new folder and it also will not let me save as PDF, going to the Print Dialog box.
    The Path is  myusername > Documents > Business > Receipts > Meetup > filename.ext
    I've tried to add new folders to the Documents menu, so
    myusername > Documents > Testing out PDFs > filename.ext
    and it's not working for that one either.
    Just a reminder that I added the "Business" folder recently, like a few weeks ago.  I have a few receipts saved under Meetup already further along that path, but I'm unable to save new PDFs anywhere under the Business heading.  I also can't save them to Testing Out PDFs folder as I've said.  However I can save them to the Documents > root folder.
    I just checked and I am able to Export as PDF from Safari to the Business folder, so it looks like it's specifically an issue between Mail and that Documents folder and subfolders.
    Ooh, even more information. 
    Okay I've tried saving to other subfolders under Documents, but when I do that I get the following error message:
    Could not save to path /Users/myusername/~/~/Documents/Family Info/Bridal Shoot 2014-06-15.txt. Choose a different path.
    The weird thing is that I wasn't even trying to save them into my Documents > Family Info subfolder, I was trying to save it into my Documents > Models subfolder.

  • Saving GroupWise Messages as .PDF documents

    Hello Folks,
    Is it possible to save GroupWise messages as .PDF documents?
    If not, is there any work-around that you may suggest?
    Thank you
    Shaun

    Originally Posted by BSajovic
    Print to PDFCreator?
    Or set the option 'Drag message to desktop' to 'Create a copy (.eml) and use an EML to PDF converter.

  • AppleScript To Save Messages As PDFs With Specific Naming Convention

    I am looking for an Applescript that:
    1: Prompts and allows the user to select one or more Apple Mail email messages from within Mail (10.4, 10.5, 10.6).
    2: Prompts and allows the user to select a save-to folder.
    3: For each message, saves it as a PDF file in the save-to folder, using the following naming convention for the PDF file:
    "YYYY-MM-DD HH.MM.SS Email From FIRSTNAME LASTNAME - SUBJECT",
    "YYYY-MM-DD HH.MM.SS Email To FIRSTNAME LASTNAME - SUBJECT",
    where in the email date-sent stamp (if I am the sender) or date-received stamp (if I am the recipient):
    YYYY = the year
    MM = the two-digit month
    DD = the two-digit day
    HH = the two-digit hour (in 24-hour time)
    MM = the two-digit minute
    SS = the two-digit second
    FIRSTNAME is the email sender's first name for email that I receive (or is the email recipient's first name for email that I send)
    LASTNAME is the email sender's last name for email that I receive (or is the email recipient's first name for email that I send)
    SUBJECT = the email's subject line
    For example: 2010-04-10 16.32.48 Email From Kris Ryan - Status Of Payroll Updates.pdf
    For example: 2010-04-10 16.33.55 Email To Sue Anderson - RE Status Of Payroll Updates.pdf (Colon omitted after "RE".)
    4: For each attachment to the message, saves it as a PDF file in the same directory using the naming convention:
    "YYYY-MM-DD HH.MM.SS Email From FIRSTNAME LASTNAME Z Attachment - NUMBER - FILENAME",
    where:
    YYYY-MM-DD HH.MM.SS Email From FIRSTNAME LASTNAME = as above
    NUMBER = an integer representing the attachment number (1, 2, ...) sorted according to filename alphabetical order
    FILENAME = the name of the file attached to the email, including its extension (.docx, .xlsx, etc.)
    The letter "Z" sorts the attachment PDFs after its respective parent email in the directory.
    For example: 2010-04-10 16.32.48 Email From Kris Ryan Z Attachment - 1 - List Of Suggestions To Moore.doc.pdf
    For example: 2010-04-10 16.32.48 Email From Kris Ryan Z Attachment - 2 - Proposed Salary Adjustments.xls.pdf
    For example: 2010-04-10 16.32.48 Email From Kris Ryan Z Attachment - 3 - Salary History.pps.pdf
    Note: The email attachment may consist of a PDF or MS Office file (Word, Excel, Power Point); however, a smart implementation will be able to handle any attachment kind. If the attachment is a PDF file, then save it "as is" using the stipulated naming convention, without passing it through Distiller.
    Thank you.
    Kurt Todoroff

    Well, that's quite a spec sheet.
    Here's a start, you can easily edit the script to get what you need:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px; height: 340px;
    color: #000000;
    background-color: #E6E6EE;
    overflow: auto;"
    title="this text can be pasted into the AppleScript Editor">
    Set a Mail Rule to Save Message and Attachment to Desktop.
    To save attachments to another another folder on the desktop (i.e. Attachments) create the folder and then
    change tell application "Finder" to set pathToAttachments to (path to desktop folder as string) & "Attachments:"
    using terms from application "Mail"
    on perform mail action with messages theMessages
    tell application "Finder" to set ptd to (path to desktop folder) as string
    tell application "Finder" to set pathToAttachments to (path to desktop folder) as string
    tell application "Mail"
    repeat with theMessage in theMessages
    set d_recd to date received of theMessage as string
    set d_recd to ReplaceText(d_recd, ":", " ") of me
    set d_recd to ReplaceText(d_recd, ",", " ") of me
    set theText to content of theMessage
    if theMessage's mail attachments is not {} then
    repeat with theAttachment in theMessage's mail attachments
    set theFileName to pathToAttachments & (theMessage's subject) & " (Attachment From " & (theMessage's sender) & " Sent " & d_recd & ")" & space & theAttachment's name
    try
    save theAttachment in theFileName
    on error errnum
    end try
    end repeat
    end if
    set theFile to ptd & (theMessage's subject) & " (From " & (theMessage's sender) & " Sent " & d_recd & ")" & ".txt"
    set theFileID to open for access file theFile with write permission
    write theText to theFileID
    close access theFileID
    end repeat
    end tell
    end perform mail action with messages
    end using terms from
    on ReplaceText(theString, fString, rString)
    set current_Delimiters to text item delimiters of AppleScript
    set AppleScript's text item delimiters to fString
    set sList to every text item of theString
    set AppleScript's text item delimiters to rString
    set newString to sList as string
    set AppleScript's text item delimiters to current_Delimiters
    return newString
    end ReplaceText</pre>

  • Mountain Lion Mail cant print or save multiple messages???

    The question is not a question because I already know.....
    Mountain Lion Mail obviously cant print or save multiple messages !
    There are multiple threads about that, but I couldnt find any solution :
    I want to export a full folder of mails (emlx) to single PDFs
    and I want to have the Images displayed ! (Lion Mail could do that!)
    saving as RTF just shows a link and not the image if it is just a linked image
    and saving multiple mails doesnt work anyway. same for printing (and save as pdf)
    did anybody run into this... maybe find another solution?
    automator doesnt really help on this, too, and i dind find any tool.
    word opens emlx files, but the image is displayed just as a 1x1cm thumb
    that is really annoying !

    I restarted the iMac and now it seems to allow this operation - so I consider this problem resolved for now.

  • Receiver Mail Adapter message with PDF attachment

    Hi.
    We are trying to generate emails from the mail adapter that includes the plain text in the body of the resulting email and an attached PDF file. We receive the following structure:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:newMailRequest_MT xmlns:ns0="http:/pdk/sap/TorstenTest">
       <Sender/>
       <Receiver/>
       <BodyContent/>
       <Subject/>
       <Attachment/>
    </ns0:newMailRequest_MT>
    I have set up an interface and mail adapter to be able to produce emails with plain text in the body. I used SAP note 748024 for this.
    So right now I can make XI send emails with dynamic mail addresses. My problem lies in sending attached files with the mails as well.
    I have read most of the threads in here, but none of them seem to answer just how to include the attachment. Which field in the 'Mail' message type is used for the attachment??
    What needs to be added to the communication channel and adapter for it to include attachments, while the body of the mail still keeps the plain text message??

    hi
    I have used the following links to send the file as an attachement and as payload.
    so it may help u.
    links:
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure - Mail Adaptor options , mail attatchment
    Sender mail adapter - PayloadSwapBean - Step by step - https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6d967fbc-0a01-0010-4fb4-91c6d38c5816
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1685 [original link is broken] [original link is broken] [original link is broken]
    /people/michal.krawczyk2/blog/2005/11/23/xi-html-e-mails-from-the-receiver-mail-adapter
    points if helpful.
    regards
    sreeni

  • PDF attachments opening in mail messages

    Hello when I send a pdf file as an attachment in a mail message, the file opens. I'd like to send the file as an icon/attachment and not display the contents of the file. How do I do this. Thank you very much.

    I thought I did:
    But just to be sure, I propagated permissions to all enclosed, but that did not seem to change anything.
    Maybe this is one of those "just because".

  • Can you batch save as pdf's to excel files

    I was wondering if there was a way of batch saving a number of PDF documents to EXCEL files so then we can collate and graph the data from there.

    Hi Chris ,
    I would request you to refer the following document that explains how to batch save files .
    http://blog.rtwilson.com/how-to-batch-export-pdfs-to-other-filetypes-in-adobe-acrobat/
    See if that solves your purposes and fixes the issue for you .
    Regards
    Sukrit Dhingra

  • I re-send a mail with 3 pdf attachmets to an outlook account and the attachments do not arrive to the receiver, if the receiver is a Windows PC. If the receiver is an iPhone the attachments can be accessed til the moment Unload the full message is pushed

    I re-send a mail with 3 pdf attachmets to an outlook account and the attachments do not arrive to the receiver, if the receiver is a Windows PC. If the receiver is an iPhone the attachments can be accessed til the moment Unload the full message is pushed

    It is NOT legitimate. It is SPAM
    The latest Firefox release is 7.0.1 which you should update to by visiting http://www.mozilla.org/en-US/firefox/new/

Maybe you are looking for

  • How to disable IE Security Warning on opening a "local" visio file with Visio Viewer ActiveX?

    Hello all, Everyone knows that Microsoft released ActiveX based Visio Viewer for free and allow the users to open Visio drawing and view/print via IE browser. The problem that I am facing is that some users are complaining about IE browser's security

  • Since upgrading iphone to ios5 the kodak pic flip app no longer works any ideas

    since i installed ios5 on to my iphone 4 the kodak pic flip app no longer works when i send to printer readout on printer screen says receiving then says cancelling then ejects a blank sheet of paper . `The app worked fine before upgrading the iphone

  • Getting 404 error when try to access website

    Hello...I have an iweb created website hosted at GoDaddy. Yesterday I did major changes on the site and uploaded it. If I use the bookmark I have established I can access the site just fine, and it is the current site. if i type in the url I get a 40

  • Why do we use getExtensionData()

    Can anybody tell me what we are doing here... String totalDueStr = (String)headersalesdocument.getExtensionData("ZZTOTAL_DUE"); Why do we use getExtensionData().

  • Installation screencast

    I'd like to make a "screencast" of the archlinux install. You know, to show it off. I'm not sure how to go about this. Ideally, some really low-level software would take care of things for me, but  I doubt that exists. Or, I could pipe the video to a