Retrieve old SENT mail

need to find an email SENT from my iphone (iphone 4s - use earthlink)

obiBunch wrote:
I did not delete it......it is just old and I let the time lapse before saving it.
It is gone then, same as deleted. You don't have it still on your email server?
1. If any post helps you please click the below the post(s) that helped you.
2. Please resolve your thread by marking the post "Solution?" which solved it for you!
3. Install free BlackBerry Protect today for backups of contacts and data.
4. Guide to Unlocking your BlackBerry & Unlock Codes
Join our BBM Channels (Beta)
BlackBerry Support Forums Channel
PIN: C0001B7B4   Display/Scan Bar Code
Knowledge Base Updates
PIN: C0005A9AA   Display/Scan Bar Code

Similar Messages

  • Retrieve POP sent mail on iPhone?

    Hi
    My dad's just upgraded to a 3GS, but he uses some essential e-mail accounts that unfortunately are POP only. He still has his old 3G which has all the old sent mail. Is there any way to retrieve this, be it through iTunes or another application? (PhoneView doesn't seem to do it).
    Thanks in advance.

    He can forward them to himself.
    You might also check out TouchCopy or something like this, see if any of them saves sent POP mail:
    http://homepage.mac.com/vaughn/msync/
    For future reference: If using POP on the phone (which is not ideal), it's a good idea to BCC yourself on all sent mail, because of this problem. I also access POP accounts from both phone and desktop, which creates an archive on the desktop.
    (POP is not really designed to be accessed from multiple devices, but it's been okay for me)

  • Ipad 3 How can I retrieve old sent messages?

    How can I retrieve old sent messages which disappeared from my sent folder? I only have old sent messages until June 2014 and I need a message I sent in March 2014. I use a pop email client (godaddy). Any suggestions? Greetings, Harry

    Unless you saved the email to a folder on your computer, it is most likely gone for good since it has disappeared from the sent folder in the mail app. Email messages are not stored in the backups so you cannot retrieve them that way either.

  • How to export old sent mail in my macbook and import it in my Mac?

    I want to export my old sent mail in my macbook and import it in my new Mac?

    There is a bug when doing “export mailbox” and import mailbox functionality. 
    Workaround:
      > Open Finder and under the “Go” menu, hold down the option key.  The “Library” sub-menu will show up.
      > Copy the entire “Library > Mail” folder to a USB disk (it will not work if copying to a shared drive for some reason)
      > Take the USB disk to the new computer and do an “Import Mailbox” and select the copied Data file.  There will be LOTS of folders that come up for import, you can browse through and deselect what you don’t need (e.g. trash or junk mail), OR just import everything and then clean up from your mailbox.
      > The imported folders will show up in mail under the “On My Mac” area.

  • .Mac Mail sends old sent mail arbitrarily

    For some reason when I look at my Sent mail folder it shows old mail sent today. In other words if I look at my send mail folder and all the mail Sent Date mail says Today there's 1 or 2 pieces of mail that also says Today but I orginally sent it in May. If you look at the header of the mail itself there is no sent date. I don't know if these are being resent or its just a bug in the app. and shows it in my mail folder.
    Any ideas??
    Thanks,
    Andrew

    You’re welcome.
    It does certainly matter how the messages were sent because AFAIK .Mac webmail doesn’t set the Date header on the copy of messages sent that way that it puts in Sent. Neither Mail nor any other mail client can reliably determine the sent date of a message if that header is missing...
    Messages sent with Mail have an X-Mailer header that says so when received. That header isn’t present in the copy of the message that Mail puts in Sent, but it can probably still be determined whether a message was sent with Mail or with webmail by looking at the full headers of the message (which you can see doing View > Message > Long Headers).
    That said, it isn’t clear what your problem really is with the information you’ve provided. It could also be that you’re experiencing some index corruption and Mail is indeed resending some messages on its own. If you suspect that’s the case, you may proceed as follows.
    Verify/repair the startup disk (not just permissions), as described here:
    The Repair functions of Disk Utility: what's it all about?
    After having fixed all the filesystem issues, if any, and ensuring that there’s enough space available on the startup disk (a few GB, plus the space needed to make a backup copy of the Mail folder), try this:
    1. Quit Mail if it’s running.
    2. In the Finder, go to ~/Library/Mail/. Make a backup copy of this folder, just in case something goes wrong, e.g. by dragging it to the Desktop while holding the Option (Alt) key down. This is where all your mail is locally stored.
    3. Locate Envelope Index and move it to the Trash. If you see any other “Envelope Index”-named file there, delete it as well.
    4. Move any “IMAP-”, “Mac-”, or “Exchange-” account folders to the Trash. Note that you can do this with IMAP-type accounts because they store mail on the server and Mail can easily re-create them. DON’T trash any “POP-” account folders, as that would cause all the mail stored there to be lost.
    5. Open Mail. It will tell you that your mail needs to be “imported”. Click Continue and Mail will proceed to re-create Envelope Index — Mail says it’s “importing”, but it just re-creates the index if the mailboxes are already in Mail 2.x format.
    6. As a side effect of having removed the IMAP account folders, those accounts may be in an “offline” state now. Do Mailbox > Go Online to bring them back online.
    Note: For those not familiarized with the ~/ notation, it refers to the user’s home folder. That is, ~/Library is the Library folder within the user’s home folder, i.e. /Users/username/Library.

  • How we retrieve the sent mails , drafts from mail

    I have a problem with retrieving sent mails, drafts and all other from mail.
    I am succeded in retrieving mails from inbox. please give me code for that
    this my code for retrieving inbox from mail.
    <%@page import="java.util.*,java.io.*,javax.mail.*,javax.mail.internet.*,javax.mail.search.*,javax.activation.*"%>
         <TABLE align="center">
         <tr>
         <td>
    <%
    String host = "pop.gmail.com";
              HttpSession hs=request.getSession(true);
    final String user=(String)hs.getValue("usid");
    final String password=(String)hs.getValue("pwd");
         String subjectSubstringToSearch = "";     
    try {
                        Properties props=new Properties();
                   props.setProperty("mail.pop3.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
    props.setProperty("mail.pop3.socketFactory.fallback", "false");
    props.setProperty("mail.pop3.port", "995");
    props.setProperty("mail.pop3.socketFactory.port", "995");
    Session session1 = Session.getInstance(props,new javax.mail.Authenticator() {
    protected PasswordAuthentication getPasswordAuthentication() {
    return new PasswordAuthentication(user,password);
    Store store = session1.getStore("pop3");
    store.connect(host, user, password);
    Folder fldr = store.getFolder("INBOX");
    fldr.open(Folder.READ_WRITE);
    int count = fldr.getMessageCount();
    out.println(count + " total messages");
                        %>
                        </td>
                        </tr>
                        </table>
                        <br>
                        <table border="1">
                        <%
    for(int i = 1; i <= count; i++) {
    Message m = fldr.getMessage(i);
                             %>
                        <tr>
                             <%
    Date date = m.getSentDate();
    Address [] from = m.getFrom();
    String subj = m.getSubject();
    String mimeType = m.getContentType();
                             %>
    <td size="35"><%out.print(date);%></td>
    <td size="35">     <%out.print(from[0]);%></td>
    <td size="35"><%out.print(subj);%></td>
    <%}%>
                        </tr>
                        <tr>
                        <td>
                        <%
    String pattern = subjectSubstringToSearch;
    SubjectTerm st = new SubjectTerm(pattern);
    Message [] found = fldr.search(st);
    out.println(found.length +
    " messages matched Subject pattern \"" +
    pattern + "\"");
    for (int i = 0; i < found.length; i++) {
    Message m = found;
    Date date = m.getSentDate();
    Address [] from = m.getFrom();
    String subj = m.getSubject();
    String mimeType = m.getContentType();
    out.println(date + "\t" + from[0] + "\t" +
    subj + "\t");
                             %>
                             </td>
                             <tr>
                             <td>
                             <%
                             out.println(mimeType);
    %>
                             </td>
                        <td>
                             <%
    Object o = m.getContent();
    if (o instanceof String) {
    out.println("**This is a String Message**");
    out.println((String)o);
    else if (o instanceof Multipart) {
    out.print("**This is a Multipart Message. ");
    Multipart mp = (Multipart)o;
    int count3 = mp.getCount();
                                  %>
                             </td>
                        <td>
                             <%
    out.println("It has " + count3 +" BodyParts in it**");
    for (int j = 0; j < count3; j++) {
    BodyPart b = mp.getBodyPart(j);
    String mimeType2 = b.getContentType();
                                       %>
                             </td>
                        <td>
                             <%
    out.println( "BodyPart " + (j + 1) +" is of MimeType " + mimeType);
    %>
                             </td>
                        <td>
                             <%
    Object o2 = b.getContent();
    if (o2 instanceof String) {
    out.println("**This is a String BodyPart**");
    out.println((String)o2);
    else if (o2 instanceof Multipart) {
                                            %>
                             </td>
                        <td>
                             <%
    out.print(
    "**This BodyPart is a nested Multipart. ");
    Multipart mp2 = (Multipart)o2;
    int count2 = mp2.getCount();
                                            %>
                             </td>
                        <td>
                             <%
    out.println("It has " + count2 +"further BodyParts in it**");
    else if (o2 instanceof InputStream) {
                                            %>
                             </td>
                        <td>
                             <%
    out.println("**This is an InputStream BodyPart**");
    else if (o instanceof InputStream) {
                                  %>
                             </td>
                        <td>
                             <%
    out.println("**This is an InputStream message**");
    InputStream is = (InputStream)o;
    int c;
    while ((c = is.read()) != -1) {
                                       %>
                             </td>
                        <td>
                             <%
    out.write(c);
    fldr.close(true);
    store.close();
    catch (MessagingException mex) {
    mex.printStackTrace();
    catch (IOException ioex) {
    ioex.printStackTrace();
    %>
    </td>
    </tr>
    </table>

    Ramesh,
    To paraphrase [url http://asktom.oracle.com]Tom Kyte, "holy unreadable code, Batman!"
    Code is much more readable if you put "[ code ]" and "[ /code ]" (without the spaces and quotes) around your code samples.
    Seems to me this would be a function of how the email server you are connecting to works - perhaps there is a folder called "Sent Items" or "Drafts" that you can use in this line (note the code tags ;) :
    Folder fldr = store.getFolder("INBOX");Not sure if this is possible via POP, but it is in IMAP. Hint: use google and search for:
    javax.mail "sent items"
    you'll get some helpful information. Nothing to do with JDeveloper here.
    John

  • How do I move or archive large numbers of old Sent mail messages?

    I've created folders for past years Sent mail and tried moving my messages out of my Sent folder (for several accounts). They seem to move, but then I get a very basic error (with no details..): "34 messages could not be moved to the mailbox "2009 Sent -- On My Mac" An error occured while moving messages to mailbox "2009 Sent -- On My Mac"
    I also get a similar error if I try to archive them. Admittedly I got WAY behind on doing this (they're from 09, 10, and 11), but there must be a way. I've tried selecting only a few months worth instead of the entire year and I still get the error. Is it an issue because they're from my Sent folder? Do I need to set up a special mailbox to move them to?
    My goal is to get my Inbox and Sent boxes trimmed down.

    I don't know what was happening but yesterday I went back and did the Export/Archive function and it ended up doing just as I expected, exporting the mailbox as an mbox format =finally!!!  Not sure why it went haywire but all is fine now.

  • Very old 'Sent' mail missing from mailbox - help?

    I've got a question about (really) old mail in my Sent mailbox. I went today to look for some very old messages (around 9/2001), and the earliest mail available to me is from Jan 1, 2003.
    Does Mail archive or delete mail after it passes a certain age?
    If so, how can I find my old mail?
    Jim

    Jim, I had thought that if you select Never as time after which sent mesages are deleted that they would stay saved on your hard drive.

  • Keeping and Viewing Old Sent Mail "On My Mac"?

    This is a relatively minor question, but it would be useful to have answered. Actually, there are sort of two questions here.
    I get my email via IMAP Exchange, and the server deletes all messages (both Inbox and Sent) after one year. Since I frequently check mail from other computers, I want to keep using IMAP so that it is still on the server; however, I also like to keep old mail archived, because sometimes I do need to refer to it.
    The somewhat inelegant solution I had found is to occasionally transfer in bulk messages from the "Inbox" and "Sent" folders on the Exchange Account to an "Inbox Archived" and "Sent Archived" folder that are local on my Mac. Now I finally realized that if I could create a rule that would Move all Incoming mail older than 330 days to the "Inbox Archived" folder, but is there any way to do that with the sent?
    The second question is, is there any way to configure the "Sent Archived" folder so that it looks like a "Sent" folder? The "Sent" folder is the only one that is configured to show "To" instead of "From"; is there no way to create another folder on my Mac that does this? Of course you can manually have Mail show "To" instead of "From," but then it applies this behavior to all Mailboxes.
    Is there maybe a plug-in that allows you to apply Viewing options to one specific Mailbox?

    You are welcome. Sledge hammer approach.
    Do a backup.
    Quit Mail.
    Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder. Go to Library/Containers/com.apple.mail.  Move the folder com.apple.mail to your desktop. You must move the entire folder, not just the contents.
    Restart, re-launch Mail and test. If the problem is solved, recreate any required Mail settings and import any emails you want to save from the folder on the desktop. You can then put the folder in the Trash. If the problem remains, return the folder to where you got it replacing the one that is there.
    Information learned from Linc Davis. Thanks to leonie for some information contained in this.

  • Oracle Connector for Outlook and Sent Mail

    I'm very desperate for help with my problem. I have a customer that uses Outlook 2003 with the Oracle Connector for Outlook. When I set up the Connector, I only had it handle her Calendar. By that I mean that the only thing I wanted the Connector to do was pull her Oracle Calendar information and put it into Outlook's calendar. I used the default setting of the Connector of IMAP, but deselected the incoming and outgoing mail servers.
    The user kept having problems with Outlook going Offline so I decided to remove the Connector. I did not realize until after removing the Connector account from Outlook that her sent mail was being saved in Oracle. This is very problematic for me because I have no idea what to do. Is there a way to retrieve the sent mail? I don't even understand why the sent mail was being saved within the Oracle folder. Once I deleted the Connector account in Outlook I was then told that I had to choose another folder for new mail to go to so I chose Personal Folders.
    If I go to \Documents and Settings\User's Name\Local Settings\Application Data\Microsoft\Outlook, I find the folder for the Connector. There is one in particular that has a .dll file that is about 56MB in size. However, I have no idea if that's the sent mail and, if so, how do I retrieve it.
    I'd GREATLY appreciate any help that can be given on this. I simply would like to know if there is a way to retrieve that mail.
    The user is using an IMAP account. This is NOT an Exchange account.

    1. Yes, OCFO is only for comunication with Oracle Calendar
    2. Yes, you can see any mail stored on the Oracle IMAP server without OCFO. Just subscribe to IMAP folders you want ...

  • Viewing cloned or time machine sent mail

    How do I safely look for old sent mail without risking updating a current sent mail folder with the older cloned or time machined sent mailbox.  I would want to search in 2 different clones and time machine.
    Thanks

    Make sure you have a Sent mailbox visible in Mail, then select it, and enter Time Machine.
    With the clones, see if you can mount them in Finder. If so, In Finder hold down the option/alt key while selecting the Go menu item. Select Library/Mail/V2 and try looking for your user library in the clone.

  • Can't see message contents in "sent" mail folder

    I had to rebuild my Apple Mail system two weeks ago. Now, if I need to look at a "sent" message from a point further back than two weeks ago, I can see the message entry, the subject, the addressee, but not the actual content of the message. I followed some advice elsewhere in this forum, but I think it made matters worse-I found two "sent" folders, under two different incoming mail identities, both mine, in my home Library Mail folder; I combined them, by physically dragging the contents from one to the other. Didn't work. Now I can't access any sent mail-I get the front details, but no contents. So now, if I have to, I can visit my Home folder Library to dig up old sent mail(it's all there), but I can't see anything from the Mail application. Any advice?

    No, my question still hasn't been answered, but I can add information. As it is now, if I open my "sent" mail folder, I can see a list of emails, with subjects, date sent, etc., but if I click on one of them, if the email is older than a certain date I won't see a message. The lower, message, window is blank.
    The new information is this: when I posted my original question, above, on Nov. 9, the blank-message problem wasn't an issue for messages sent in the preceding week; only for messages sent before that. Now, on Nov. 13, I can read messages back to Nov. 9, but not before that. The problem is advancing a day at a time. I can only read messages sent within the last four or five days; not before.

  • Sent mail lost

    I reverted to 10.6.1 after having problems upgrading to 10.6.2 with Adobe and Microsoft apps (slow/beach ball). I did it by restoring from the latest 10.6.1 Time Machine back up. Everything worked fine, except there were some sent emails in Mail that disappeared. All the pre-upgrade email (about 3 days worth) duplicates came in, but the Sent mailbox is empty and none of those came in. No recent sent mails are on the server's webmail. Is there any way to retrieve recent sent mail?

    If Mail put the message in Sent, that means the outgoing (SMTP) server told Mail that the message would be delivered. If the message never reached its destination, it could be because the SMTP server didn’t fulfill its promise or because the message was filtered out by either the recipient’s incoming mail server or the recipient’s mail client for some (probably spam-related) reason.
    There is no way to determine whether a message you sent was received other than asking the recipient.
    Check that your System Preferences > Date & Time settings are correct. An invalid timestamp in the message headers could be the reason one of the servers involved is rejecting those messages.

  • I have a new MacBook.  In mail, my sent mail only remains on my computer for 2 weeks.  Can I go somewhere to lengthen the time it remains in the file?

    This is a 2014 MacBook Pro 15 inch Retina with OS 10.9.4.  I am unable to find out where to modify the length of time I can store "sent" mail.  I would like to change the setting from 2 weeks to "never remove".  I regularly find myself searching for previously sent email and am also constantly individually eliminating old sent mail.

    Open Mail preferences and select Mailbox behaviors and check the box marked sent and choose NEVER.

  • Changing mail server settings (per Verizon's request) caused all sent mail to disappear

    Changing incoming mail server per Verizon's 3/7 email caused sent mail folders on iPad and iPhone to go empty. I was able to restore them by restoring my devices from iTunes backups. All sent mail was then restored (even mail sent after the backup date.) If I change the outgoing server, the sent mail files are not affected. Changing the incoming server (from incoming.verizon.net to pop.verizon.net) wipes out the sent mail. Since it is POP/SMTP, there are no other settings I can change on the Apple side. It appears Verizon needs to figure out how to link the old sent mail to the new server ID... Anybody know anything about this?? Thanx.

    Hmeek wrote:
    iPhone does not have many settings for POP email clients, which is what Verizon is. The options to set delete behavior and file locations exists only for IMAP mail, and Verizon is POP, not IMAP. And changing the incoming server settings DID cause my sent mail to disappear. It was reproduceable. As said before, it came back when I restored from backup -- even a backup that pre dated many of the sent messages, so they obviously didn't restore from the backup itself. (And Apple confirms that mail is not backed up in an itunes backup). Verizon keeps claiming that sent mails are not stored on their system, but where did they come from when they re-populated?
    From your restore most likely.  Its true that smtp email does not get saved on the Verizon (or most other) mail savers.

Maybe you are looking for

  • How do I view an external display with my macbook pro closed?

    How do I view an external display with my macbook pro closed?  I am using  a wireless keyboard and trackpad, and I would like to use a larger (Dell) monitor with my Macbook Pro closed.

  • Why is file size of exported clip so large?

    I have a movie clip in MPEG-4 format, 3 minutes in duration, 720x400. I ripped it (using Handbrake) from a DVD I own. Let's call this clip Clip A. I wanted it to be smaller, so I used Quicktime Pro 6.5.2 to export it. Let's call the exported clip Cli

  • How to add new entry, in table on button click.

    i have 2 input ,witch i am taking from numeric controls. this 2 input are use to calculat my output. on button click i want these 4 things should go in the table. now my problem is when i click the button previous entry in the table get lost... plz h

  • Acer X241W monitor "No Signal"

    I have an Acer X241W LCD monitor on a Vista 32 OS. I have had this monitor for 1 year and I have a persistant problem. I continually get an unmovable "NO SIGNAL" message on my monitor even tho I can still  work behind the message.  A few seconds late

  • What is the URL for downloading Creative Suite 4 Design Premium to reinstall?

    I had my HD die on my iMac and support gave me a url to download my Creative Suite 4 Design Premium again to make my backup restore system work.  I have decided to switch to a new iMac so I need the url again as the backup again did not let me work e