How do I display sent mail on new ios7 on I pad?

How do I display Sent mail in new ios7 on iPad?

The same way you did before, by going to the Sent Mail folder in the Mailboxes list. Other than the overall look, the Mail app hasn't changed substantially in iOS 7.
If you continue to have issues or have other questions, I'd suggest you post in the iPad forum. The forum in which you posted this thread was for questions about the Communities themselves (though the thread may have since been moved by the Hosts).
Regards.

Similar Messages

  • HT201342 There is no info here about how to receive emails sent to the new @iCloud account. How do I receive such emails?

    There is no info here about how to receive emails sent to the new @iCloud account. How do I receive such emails?

    There is no info here about how to receive emails sent to the new @iCloud account. How do I receive such emails?

  • How to update the sent mail using SO_NEW_DOCUMENT_ATT_SEND_API1

    I have a requirement to update/ append the sent mail like a trail.Since i am sending mails using SO_NEW_DOCUMENT_ATT_SEND_API1, how can i update new contents to sent mails using this RFC???Please help me.

    you may have to store content of each time mail send then only, you can send with history.

  • How to migrate AOL sent mail to Mac Mail?

    I am helping a friend migrate to a new iMac with Lion.  I got Apple Mail to read her AOL inbox using POP but she wants all of her AOL SENT mail folder transferred also. She will stop using AOL as soon as we have all her mail imported into Apple Mail. I haven't been able to find any migration app for AOL to Apple Mail.  So what I've been able to find out so far is that I can save her mail locally on the PC and discovered it's stored in a SQLite database named COMMON.CLS.  I can use the free SOURCEFORGE SQLite Database Browser to look in the file and I can see all the mail in the database format, but how do I get all that mail into Apple Mail?  Apple Mail can import files of .mbox format, so converting the COMMON.CLS file to a .mbox file should work also.  Any ideas or programmers that want to make a useful utility?

    Hi Bill, I have no experience, & since the Boards have changed here & really slow down my trying to help, (to the point of endeavoring to quit helping here), I'd research Google Sync, I think that's likely the best option, but do let me/us know!

  • How Can I Access sent mail?

    When I try to read sent mail I get this message: (the email) has not been downloaded from the server. You need to take this account online in order to download it. Can't figure out how to do it, can anyone help please?

    If this is a POP account and you’re running Mac OS X 10.3 (Panther), as your profile indicates, you probably have the problem described here:
    Overstuffed mailbox is unexpectedly empty
    If you’re just starting to experience the problem, doing what the article suggests might work. If you’ve let the problem to become worse over time, however, it may be too late to solve it as described in the article.
    Because of the differences between Mail 1.x and Mail 2.x, further discussing your problem here might confuse other users with apparently similar problems running Mac OS X 10.4 (Tiger), so please start a new topic in the Mail & Address Book - Mac OS X 10.3 & earlier forum, or just look for other threads discussing the same problem there. This is actually a FAQ in that forum.

  • 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 to download the "Sent Mail" folder from Gmail to Mail 4.1?

    Since updating to Snow Leopard I no longer have any mail in my Sent Mail folder
    when using IMAP in Mail 4.1. In fact just a few (258) of all my sent messages (3732)
    were properly downloaded.
    I noticed that after configuring my Gmail to work with Mail/IMAP some new folders were
    created. They are: [Gmail]/Sent Mail/Sent, [Imap]/Drafts, Sent messages, and Deleted Messages. Apart
    from those, my Gmail account has always had standard folders such as Inbox, Sent Mail (the majority of my sent messages are in here), Drafts, Spam, and Trash. Apparently Mail is only downloading the messages from the new "Sent messages" folder and not the standard "Sent Mail", wherein all my sent messages actually are.
    Another issue it that the spinning gear next to the Gmail Inbox in Mail 4.1 keeps spinning incessantly as if checking for new messages all the time even though it is set to check for new messages every 5 minutes and all messages has been downloaded. I have another IMAP account for my university's email which is working perfectly (neither problems with Sent Mail folder nor spinning gear). I will post the spinning gear problem in a separate question.
    In my old MacBook I didn't have this problem when using Gmail with POP. This is the first time I'm using IMAP.
    Is anybody having the same problems?
    I appreciate your help in advance.

    pbchaves wrote:
    Since updating to Snow Leopard I no longer have any mail in my Sent Mail folder
    when using IMAP in Mail 4.1. In fact just a few (258) of all my sent messages (3732)
    were properly downloaded.
    I noticed that after configuring my Gmail to work with Mail/IMAP some new folders were
    created. They are: [Gmail]/Sent Mail/Sent, [Imap]/Drafts, Sent messages, and Deleted Messages. Apart
    from those, my Gmail account has always had standard folders such as Inbox, Sent Mail (the majority of my sent messages are in here), Drafts, Spam, and Trash. Apparently Mail is only downloading the messages from the new "Sent messages" folder and not the standard "Sent Mail", wherein all my sent messages actually are.
    you can change Your Sent mailbox to "Sent Mail". select Sent Mail mailbox, go to mailbox menu->use this mailbox for->sent.
    Another issue it that the spinning gear next to the Gmail Inbox in Mail 4.1 keeps spinning incessantly as if checking for new messages all the time even though it is set to check for new messages every 5 minutes and all messages has been downloaded. I have another IMAP account for my university's email which is working perfectly (neither problems with Sent Mail folder nor spinning gear). I will post the spinning gear problem in a separate question.
    In my old MacBook I didn't have this problem when using Gmail with POP. This is the first time I'm using IMAP.
    Is anybody having the same problems?
    I appreciate your help in advance.

  • How do I get SENT mail to sync on two Macs

    My 'Sent' mail folder does not sync.  I Have a Mac & MacBook Air both running Mountain Lion.  I have a gmail account setup using imap.   When I send an email on one computer it does not show up in the 'Sent' file of the other computer.  How do I get them to sync

    In Mail in Preferences->Accounts->Mailbox Behaviors, in the
    Sent preference, do you have "Store sent messages" checked?
    Also, "Delete sent messages when:" set to never?

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

  • How do I archive sent mail?

    I recently upgraded a family member's iMac, and restored her mailboxes from archives I'd made. Her Sent mailbox wasn't available, however. Is there any way of restoring this? The old iMac is still available to plunder.

    If you restore the backup copy of the original Mail folder and com.apple.mail.plist file, then all mailboxes including the Sent should be restored. The Mail folder is found at Home/Library/Mail, and the plist at Home/Library/Preferences.
    Depending upon how first restored the Sent mailbox, it might be possible that only a Rebuild would be needed to make the messages visible assuming they were present in the Sent Messages.mbox folder you restored?
    Ernie

  • How do you store "sent" mail locally and on the server?

    Hello. This is a slightly lengthy...but hopefully someone can help!
    I am using the Mail program in Tiger (Mac OS X 10.4.3) with an IMAP account. I am wondering how you set up the preferences so that the e-mails that you send (outgoing) are stored locally on my computer and also on the server (so that I can .
    So far I have tried checking and unchecking the option to 'store mail on the server' (in the 'Mailbox Behavior' window of the Preference Box). When I uncheck the box, the sent mail is stored ONLY locally on my computer.
    When I check the box so that the mail is stored on the server, I cannot view any copies of the sent mail on my computer, nor can I view the sent mail through my other school account (same account b/c it's IMAP).
    My IMAP account is setup with my school, so I have a folder called 'Sent' that I have programmed so that copies of my sent mail are stored there (viewable locally on any computer that I log-in to). I formerly user Thunderbird (with Mozilla) and it allowed me to save sent mail into that same folder, but I am unable to do so with Mail in the Tiger program.
    I hope this is understandable...anyone able to shed some light on this issue? Thanks!
    PowerBook G4   Mac OS X (10.4.3)  

    Hi tanjo,
    This is a bit of a workaround, but you could set
    mail.app to automatically blind copy to yourself any
    messages you originate (and then use a rule to
    automatically file these messages in a "sent" folder
    of your choice).
    A method to do setup this default bcc is on
    MacOSXhints.com, in this article: Permanently add Reply To headers in
    Mail.app. It references this command line:
    defaults write com.apple.mail
    UserHeaders '{"Bcc" = "[email protected]";
    best of luck,
    ...ben
    PB G4 15 1.67 GHz,
    iBook SE 0.47 GHz   Mac OS X (10.4.3)  
    Hi Ben,
    Thank you very much for the tip. I'm going to give that a try. Happy Holidays!
    --tanjo

  • How to re-download "Sent mail"

    Hi everybody.
    I got my new MBP a few weeks ago. As I couldn't transfer file from my old Mac due to disk failure, my mail was lost in space. I didn't panic because I knew Mail would download all my Inbox messages from every account I have.
    But here's my problem with the Apple Mail. I have four different accounts set up in Mail (Gmail, Yahoo Mail Plus, AOL and Live). For Gmail and AOL I have the option off choosing to save the sent messages to server. Correct me if I'm wrong, but to my understanding, that means every message I sent using Mail (and particularly those two outgoing servers), I should find a copy inside Sent Mail folder in my Gmail or AOL account. If that is true, it didn't work.
    My sent mails using Apple's Mail did not have a copy sent to the server. It's quite an issue for me since I'm nearly facing a law suite because I don't have a proof that was stored in my Sent mails folder. I know Apple declines any liability for this kind of problems, and I don't think there's anything left for me to do to recover the lost messages...
    What I do want to know is what to do to make Mail save my sent messages to the server from now on.
    Any ideea would be greatly appreciated

    Sent mail using Mail is stored in the Sent mailbox on your computer. Incoming mail has an option to leave a copy on the server so that if you are checking mail from multiple places that you can receive the mail eg. iPhone, work and home.
    If the info is that important on the failed HD there are places that can recover the data for you for a price. Or you can try something like Disk Warrior, depending on what kind of failure.
    Internet base Email services may have a copy of Sent mail stored, contact them for recovery.
    http://www.alsoft.com/

  • How do I find sent mail which is disapeared?

    Hello, sometimes Mail does remove sent emails. Now I want to find an email back, because it's really important. Is it possible to find it back, althought it's not on the server or any of my devices? It seems to be that this bug appears since the last IOS-update.
    Thank you for your advice!

    My sent mail appears in Sent mailboxes in every single one of my email accounts. I have four of them on the iPad and the behavior is the same in all four. One is POP and the other three are IMAP accounts.

  • My iPad is showing different display in Mail after new update .

    Why is my iPad showing a different display in mail . I cannot move the last mail viewed......hate it...

    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    Additional things to try.
    Turn Off your iPad. Then turn Off (disconnect power cord) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi. (In a hotel, you can't do this.)
    On your iPad go to Settings > General > Reset > Reset network settings and see if that enables you to connect.
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
     Cheers, Tom

  • How do I close apps in the new ios7

    How do I close apps when I am finished with them in the new ios7 (to conserve battery)?  double tapping the bottom button and then holding down on the apps to get the "-" doesn't work any more.

    Double tab the home button. Swipe up on the application window (not the icon) to close the application.

Maybe you are looking for