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)

Similar Messages

  • How can I get mail not to save sent mail on iphone?

    I use yahoo mail for my mail acct. In yahoo mail I have the sent mail folder turned off. I do not want to save my sent messages. This used to work on my Itouch but now with my new Iphone it is saving the sent messages. How can I get this to stop? I have been through all the settings and can't figure it out. You may email me at [email protected] Thanks for your help!

    Not sure how this used to work on your iPod Touch since there is no setting for an email account preferences to not save sent messages. With an IMAP account, there is an option to store sent messages on the server, or locally on the iPhone. There is no do not save sent messages setting, and the same for the email account preferences with a POP account.

  • How to sync sent mail from iPhone to MacBook Air mail?

    I have sent mail from my iPhone and I want this sent mail to show on my laptop (MacBook Air).  Is there a setting that will allow for this?  I use Apple's Mail on my laptop.
    thanks

    Hi,
    To do this, you must be using an IMAP email account type.
    If you are using a POP mail account it is not possible.

  • 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

  • I want to read my sent mail in iPhone

    In my mail client in OSX,  I have a mailbox called 'Sent'. I can find no such mailbox on iPhone/iPad.
    Why?

    Thanks, Mr. Razmee, for a rapid response.
    A little history:
    In PC days I had resident e-mail on my PC from local phone company server. They sold us out to Google. Then I cancelled that accoiunt and got new iPhones for myself and my wife.
    I felt good to move our main e-mail to icloud. I wanted to continue to mutate into an Apple family. My wife's iPad was set up with a nice resident mail, with a list of mailboxes, including Sent.
    When the Apple support person set up the iCloud account, she said I had to use an existing (or made up) e-mail. I gave one I set up some time ago only to deflect Facebook stuff to and keep out of our regular mail. That sent all Apple mails to that one instead of our new iCloud mail.
    Here is how it is now. Our iOS devices are set up with 2 e-mails. They are displayed without indicating where they came from. They can be answered, etc. without 'using' one account or another. I'm fine with that. I'm in a happy coccoon able to write back and forth with those who feel they must use yahoo and the ones I write to in iCloud. The sent mailbox in Mac & iPad is right there below the inbox. I am fine with that.
    I'm not happy that in iPhone, I have to go on a goose hunt to find my sent mail.
    Hope that makes sense.

  • Where is my sent mail folder (iPhone 4)?

    Hey all--I just got my first iPhone, so I'm pretty new to all this. I immediately noticed that in my mail app, there is no sent mail folder. I really would like to be able to reference emails after I have sent them. Why is this folder not there and how can I get it to show up?

    Turn it off by holding the top button down "slide power to off" & slide this. Leave off a bit and turn back on holding the top button until you see the apple logo. It will take 30 seconds or so to resart. Hopefully this will fix your problem.

  • Sent mail from iPhone doesn't show on Macbook Pro

    I recently update my Mac to Mountain Lion and my iPhone to iOS6. The mail app on my mac won't show the emails I sent from my iPhone. Is there a way to enable this?

    It is, I used to be able to see all mail sent from all my devices on the old mail app. I can only see the messages I have sent from my Mac.

  • Popping sent mail / blackberry

    hi there,
    tried to search the boards for this topic but was unable to find any info; if there's already a thread please let me know...
    so here's my issue: i just got a blackberry and have been sending a lot of emails from it. unlike sending mail from the mac mail program, the sent emails don't go into my sent box in mac mail. they do however go into my yahoo sent box (from where i pop my mail into mac mail).
    aside from manually moving the sent mail into the inbox from the yahoo mail website and then letting it pop into my mac mail inbox then moving it into the sent box, is there an easier way to do this?
    i have pocketmac software, but unsure if this can do that...
    thanks much.
    rw
    macbook pro   Mac OS X (10.4.8)   blackberry 8700g - t-mobile

    Looks like perhaps a failure to decode Base 64 Content Transfer Encoding. Maybe stripping of headers that tell Mail to do that by server somewhere along the line? No idea how to fix.

  • Synchronising GMail Sent Mails on iPhone and OSX Mail

    I have been using Gmail sync'd between my laptop and my iPhone for months with no problems - I've never been too bothered about synching sent emails. But now my wife has an iPhone she'd like copies to see copies of her emails sent from her iPhone using her GMail account to appear in her Sent Box in Mail.
    Does anyone know if this is possible?
    Obviously one workaround is for her to bcc herself in on every email sent from her iPhone but she'd rather not do that

    I have been using Gmail sync'd between my laptop and my iPhone for months with no problems - I've never been too bothered about synching sent emails. But now my wife has an iPhone she'd like copies to see copies of her emails sent from her iPhone using her GMail account to appear in her Sent Box in Mail.
    Does anyone know if this is possible?
    Obviously one workaround is for her to bcc herself in on every email sent from her iPhone but she'd rather not do that

  • 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

  • Syncing verizon pop sent box on iphone

    I have a verizon pop account and it will not sync sent email from phone to mail on the mac. I understand from other discussions that pop will not sync. If I use .mac or Mobile me will that take care of it. I just need to get my sent email from the phone to my mac. Is there any way.

    Allan,
    We've had this discussion before, but I'm curious why you say you can't reply and change the from address when replying to a .mac email. I have several accounts on my iphone, including a mobileme account. If I receive an email in my inbox in my mobileme account, and choose Reply, I can tap the "from/cc/bcc" box, which separates the three into individual fields, then I can tap the mobileme address that's already in the "from" box, and a scroll wheel appears where I can select to send it from any other account that's set up on the phone. Doesn't yours work this way?
    This won't help the OP, because if he does this and sends from his pop account he'll still not be able to have his sent box synced, but for imap accounts, this works just fine.

  • Syncing Outlook for Mac with a hotmail pop accountto 'mail' on iphone, ipad and ipod

    I'm using Outlook for Mac 2011, with a hotmail account set up as a pop account to my outlook inbox.  I also have that same hotmail account set up on my iphone, ipad and ipod.  Is there a way to sync my e-mail between Outlook for Mac and the 'mail' on my other devices, so that when I delete an email on my computer, it deletes on all devices?
    I'm not so tech savvy and am happy to provide any additional information but am not sure where to start!  I would appreciate any help you can give me.
    Thank you

    First check that all your settings are correct, that contact syncing is checked on all devices (system preferences > iCloud on a mac and settings > iCloud on a iPhone, iPad or iPod).
    Make sure the contacts you are adding are added to your 'iCloud' group and not an 'On My Mac', 'On My Phone' or other non iCloud group (you can do this by checking in groups), non iCloud contacts will not sync.
    If you are sure that everything is set up correctly and your contacts are in the iCloud group, you might try unchecking contact syncing in the iCloud settings, restarting your device and then re-enabling contact syncing.
    This user tip might help you understand how accounts work with Contacts (Address Book).

  • Sent mail from iPhone does not sync with AOL mail

    When I send mail from my iPhone, it does not appear in my AOL sent folder.

    OK, I figured it out.  I was thinking that when I would sync my iPhone that I would see the pics and videos I took under the iPhone photo and movie tab.  Not the case......I had to locate my iPhone via my computer, then double click on my iPhone and drag and drop the pics and vids into a folder on my hardrive, then via iTunes I could sync that folder.  Then sync my Apple TV!!

  • ICloud sent mail on iPhone omitting huge gaps in time

    I recently moved from Gmail to iCloud. As part of the migration, I moved over a couple thousand sent messages which originated from my Gmail account.
    Have noticed that despite them appearing properly in webmail and Mail.app on my MBP, there are huge chunks of time omitted in the messages which sync to my iPhone 5 (iOS 6.1.2).
    Currently syncing 50 messages. Originally, it showed the most recent one or two and then showed mail sent from my old Gmail account back in 2009-2010, but nothing more recent.
    Then I did this:
    1. Moved all mail to a temporary holding folder in Mail.app
    2. Disabled iCloud mail on the phone
    3. Moved the mail back to the Sent folder within the iCloud account in Mail.app
    4. Turned on iCloud mail on the iPhone
    ... which resulted in a message sync including one from late 2012 and then a bunch from 2011. Nothing more recent, as would be expected.
    Of note, I received a "your iCloud storage is full" automated email during the move. I only have ~500 MB of storage used on a basic 5 GB account.
    Suggestions appreciated. Pretty annoying little "bug."

    Still haven't been able to figure this out. Suggestions appreciated.

  • 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 ...

Maybe you are looking for