Can I open multiple email accounts on my ipad?

How can I open multiple email accounts on my ipad?

Hello Danbonow,
Yes, to do that, follow this instructions:
Open Settings.
Tap "Mail, Contacts, Calendar".
Select "Add account" and fill the details.
Sincerely,
Gonçalo Matos

Similar Messages

  • TS3276 I cannot connect to my outgoing email server on my macBook pro, yet I can, for the same email account on my iPad. Also I can send emails from the other email account I have on my MacBook...really confused can anyone help?

    I cannot connect to my outgoing email server on my macBook pro, yet I can, for the same email account on my iPad. Also I can send emails from the other email account I have on my MacBook...really confused can anyone help?

    Sometimes deleting the account and then re-creating it can solve this issue
    Write down all the information in accounts before doing this
    Highlight the account on the left and click the minus button
    Then click the plus button to add the new account and follow the prompts

  • I have multiple email accounts on my iPad. How do I control the order in which the accounts are displayed?

    I have multiple email accounts on my iPad. How do I control the order in which the accounts are displayed?

    In landscape mode, the mailbox list is automatically displayed (in portrait mode, you will need to tap the button to,show it).
    To edit the list, tap edit as shown below.

  • How can i read multiple email accounts?

    hi,
    my program is to get emails from multiple email accounts, and grab the attachments, but it doesn't work properly.
    If there's only one email account, it works fine, but if there are more, it looks like that the program always goes into the first mail account to read the messages. i suspect that the 'Server' or the 'Session' are not reset before each connection, i printed out the connected 'Folder', it looks fine, but every time the 'Folder.getMessageCount()' returns the same number of messages as the first email account has.
    Here's my code:
    // this is to get the folder, mostly 'inbox'
    // serverString is like: "protocol://username@host/foldername"
    // all parameters are retrieved from the Database
    public static Folder getMailFolder(String serverString, String username, String password) throws Exception {
            // URLName server = new URLName("protocol://username@host/foldername");
            Folder folder = null;
            URLName server = new URLName(serverString);
            // the session is created by grabbing the authentication using the username and password
            // the MailAuthenticator is an inner class as shown at the bottom
            Session session = Session.getDefaultInstance(new Properties(),
                    new MailAuthenticator(username, password));
            folder = session.getFolder(server);
            // this message always show the same number of messages
            System.out.println("folder retrieved for " + serverString + ", with " + folder.getMessageCount() + " messages");
            return folder;
    // this method is to get the messages from the folder
    public static void getEmailWithSubjectContaining(String emailUrl, String username, String password,
                  String regex, String filepath, boolean addPrefix, boolean delete)
             throws Exception {
             Folder folder = getMailFolder(emailUrl, username, password);
            if (folder == null)  return;
            folder.open(Folder.READ_WRITE);
            Message[] msgs = folder.getMessages();
            // Here is my problem, the msgs.length always returns the same value
            // which is the number of messages that the first email account has
            System.out.println("Totally there are " + msgs.length);
            for (int i = 0; i < msgs.length; i++) {
                 String pathToSave = filepath;
                   String subject = msgs.getSubject();
                   System.out.println("Email subject: " + subject);
    // examine if the message should be dumped and deleted
                   if (!subject.matches(regex)) {
                        System.out.println("Email subject doesn't match regex: " + regex + ", this email is ignored.");
                        continue;
                   Part p = (Part) msgs[i];
    //               p.getFileName();
                   if (addPrefix) {
                        pathToSave = filepath + "/" + getFilenamePrefix(subject);
    // this method call is to save the attachment
                   dumpAttachment(p, pathToSave);
                   msgs[i].setFlag(Flags.Flag.DELETED, delete);
              folder.expunge();
    folder.close(false);
    // this method calls getEmailWithSubjectContaining using a loop
    public static void getEmailWithSubjectContaining(String dbUsername, String dbPassword, String dbUrl) throws Exception {
         Connection con = null;
         if (dbUrl == null || dbUrl.equals("")) dbUrl = "jdbc:mysql://localhost/email_util";
              try {
    // here is just simply get the Database connection
                   con = MySqlJDBCConnection.getConnection(dbUsername, dbPassword, dbUrl);
                   Statement s = con.createStatement();
                   String sql = "SELECT * FROM email_fetching_config WHERE active = 1";
                   ResultSet rs = s.executeQuery(sql);
                   while (rs.next()) {
                        String protocol = rs.getString("protocol");
                        String url = rs.getString("url");
                        String box = rs.getString("email_box");
                        String username = rs.getString("username");
                        String password = rs.getString("password");
                        String regex = rs.getString("sub_regex");
                        String path = rs.getString("save_to");
                        String prefix = rs.getString("append_prefix");
                        boolean delete = rs.getBoolean("delete");
                        String emailUrl = protocol + "://" + username + "@" + url + "/" + box;
                        boolean addPrefix = (!prefix.equals("") || prefix != null);
                        System.out.println("Ready to grab emails from " + emailUrl + ", path to save is: " + path);
                        try {
                             getEmailWithSubjectContaining(emailUrl, username, password, regex, path, addPrefix, delete);
                        } catch (Exception ex) {
              } catch (Exception ex) {
                   ex.printStackTrace();
              } finally {
                   MySqlJDBCConnection.close();
    ********* Authenticator *******
    class MailAuthenticator extends Authenticator {
    private String username;
    private String password;
    public MailAuthenticator() {
    public MailAuthenticator(String username, String password) {
    this.username = username;
    this.password = password;
    public PasswordAuthentication getPasswordAuthentication() {
    return new PasswordAuthentication(this.username, this.password);
    This is all my program doing, anyone knows what the program is? thanks for your help!
    regards                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Assuming you're passing in the right URL, I don't see the problem.
    Still, try change session.getDefaultInstance to session.getInstance
    and see if that helps. If not, turn on session debugging and check the
    protocol trace for clues. If you still can't figure it out, post the protocol
    trace.

  • Can I have multiple email accounts or at least notification of emails in one location

    I have a hotmail, gmail, yahoo email accounts and want to either have them all running at the same time or at least setup email notification funneled to one of the accounts.

    Hi,
    You can open and use all the different accounts at the same time in different tabs. Please note that Firefox and other browsers are only for displaying the web pages, email pages etc. The actual emails, settings etc. are all stored at the web site/email site and are received and displayed from there. To make changes you may have to look in the settings inside the relevant email account.

  • Why is opening Multiple eMail Accounts not allowed

    If I open a second Yahoo eMail Account I get a message that the first one is being closed because it is no longer being used.
    Why is having to accounts open at the same time a problem? What is the reason behind it?
    If I open the accounts in different browsers, no problem - so I'm guessing it's an ISP thing?
    I understand there are work-arounds such as Multifox (it says for Gmail, I'm assuming also eMail?) but I don't understand what the problem is.

    It is due to the way that cookies are handled. Extensions such as [http://br.mozdev.org/multifox/ Multifox] and [https://addons.mozilla.org/firefox/addon/cookieswap/ CookieSwap] change the handling of cookies to allow you to have different logins active. This is achieved by allowing you to have multiple versions of cookies for the same site, and swapping between them to go to the different logins.

  • HT201320 Can I add multiple email accounts?

    I have several yahoo mail accounts. I want to check all my emails from different accounts on my phone? Any helps?

    Hello Coco_Skye,
    Yes you can have multiple version of yahoo mail using the Mail App. You also have the option to go to the App Store and use the Yahoo Mail app which will support multiple mail accounts as well. 
    iPod Features Guide 
    http://support.apple.com/kb/HT4810
    Yahoo Mail – Free Email App
    https://itunes.apple.com/us/app/yahoo-mail-free-email-app/id577586159?mt=8
    Regards,
    -Norm G.  

  • How can I open multiple gmail accounts on the same Firefox broweser?

    I use Firefox. I have multiple gmail accounts. I would like to access them simultaneously.

    There are add-ons that allow you to do this such as:
    * Multifox - http://br.mozdev.org/multifox/
    * CookieSwap - https://addons.mozilla.org/firefox/addon/cookieswap/

  • I can't access my email account on my iPad

    I Had delete and set up my email account due to problems. Now I can only access the inbox, but not my saved messages. How can I fix this?

    AAll my email came in through yahoo, but my provider is also sbc global.net. When I couldn't get any email through yahoo I added another account and used ATT (sbc global.net) as my provider which is now getting me my incoming mail, butt i can't see any of my saved/sent mail for the account. Does that make any sense?

  • I can't get my email accounts loaded on iPad 4, I can't get my email accounts loaded on iPad 4

    I'm having trouble with my new ipad4 not loading my emAil accounts- it doesn't recognize my passwords

    So why are you posting your question in the iPHONE forum?

  • How can I open multiple email messages with a single click?

    On the Mac mini I use at work, I can select several email messages at a time and open them all up by double-clicking the mouse pointer on any of the selected messages. My MacBook Pro at home seems to lack that functionality, even though both are running the same version of Yosemite. In order to open up multiple messages (each, in its own window) on my MacBook Pro, I need to double-click on each individual message, even though I have multiple messages selected on my MacBook Pro, using Yosemite's Mail app. I assume there is an optional setting that can enable multiple messages to be opened by double-clicking on a single selected message, but I have looked through the Mail app's preferences and I come up empty handed. Can someone please clue me in on how to get this functionality on my MacBook Pro?

    Hi,
    There is another similar icon named Bookmarks in the '''Customize''' window which provides the said functionality. You have to add that.

  • How can i host multiple email accounts?

    Hi there,
    I've a problem.
    I have installed Lion os x server with the latest updates.
    I need help to set up Separate E-Mail Accounts for each Domain, so each Domain receives it's own mail.
    I have the following domains that i want to host with emails.
    www.example1.com
    www.example2.com
    Hosting of website is not a problem. I have it working including PHP+MYSQL.
    But now..How can i setup to receive and send emails with both domains? (www.example1.com and www.example2.com)
    I want to have something like this:
    www.example1.com:
    [email protected]
    Hostname: server.example1.com
    Outgoing: server.example1.com
    and
    www.example2.com:
    [email protected]
    Hostname: server.example2.com
    Outgoing: server.example2.com
    for www.example1.com it's the standard one and works fine (including apple Push). But realy confusing that i cannot get it work with example2.com.
    Can anybody help me? I've searched the whole web but cannot find a good answer.
    Thank you very much in advance!
    JBressers

    You can run multiple domains in postfix/Mac OS X server, but don't get bogged down with the hostname.
    There is nothing wrong with mail for a [email protected] being delivered to/from a server.example2.com (or vice versa). Most users never see the hostname of the server in the process, so don't bother trying to create multiple hostnames on the server to make this work. If you're really bothered just create records in your DNS that map back to the same IP address (e.g. server.example1.com -> 1.2.3.4, server.example2.com -> CNAME -> server.example1.com) so users can use either hostname.
    For the accounts, there are two ways of managing multiple domains, depending largely on your comfort level with the command line vs. GUI, and how the users map.
    If the usernames are the same (e.g. [email protected] is the same person as [email protected]) then the simplest thing to do is tell postfix to accept mail for both domains - mail addressed to either domain (example1.com or example2.com) will route to the same user's mailbox.
    If your users are different then you can either use Mac OS X-style aliases or postfix aliases.
    The Mac OS X-style aliases work through Workgroup Manager - you add all your users to the main directory, and create additional shortnames for each user's email addresses. For example, you might have a user 'joe' who is also '[email protected]', so add that second email address as a shortname.
    Postfix-style aliases require setting up in the command line, where you create maps of email addresses to users, and is well documented on various postfix-driven web sites.

  • Can I open multiple Apple Accounts?

    I have had two Apple accounts for some time, giving me an email address with the @me.com address.  My wife and I have just gotten two new iphones, and see has expressed interest in getting her own email address with the @me.com format.  Can I get an additional email address, so she can tie in the new email address to her new iphone? How does this impact iCloud. Would she still be able to sync her contacts, emails, etc. with our other account with our old email address and other existing Apple account, so her Mail, for example, would show both her new account and the old account syncing?

    Hello Danbonow,
    Yes, to do that, follow this instructions:
    Open Settings.
    Tap "Mail, Contacts, Calendar".
    Select "Add account" and fill the details.
    Sincerely,
    Gonçalo Matos

  • Can I open multiple Paypal accounts to accept payments for multiple businesses?

    Hello, I plan on setting up two businesses that will use Paypal to accept payments. Can I set up two seperate Paypal accounts to accept payments for my two businesses?

    You can have up to 8 bank accounts attached to your paypal account. So if you know how much you have earned per business you can withdraw that amount to one bank account and the rest to a different bank account. Hope that is what you meant. If not will check back later tonight or late tomorrow as got to work tomorrow during the day.     ***************************************** I give up my time to help you so a thank you or kudos would be cool.
    Marking one of my replies as a solution would be appreciated if I sorted your problem.
          

  • How can I delete multiple email messages on my mobile device

    HOw can I delete multiple email messages from my ipad and iPhone

    Hello conniefromtulsa,
    The process for deleting multiple messages is detailed in the iPhone User Guide:
    Delete, move, or mark multiple messages. While viewing a list of messages, tap Edit. Select some messages, then choose an action. If you make a mistake, shake iPhone immediately to undo.
    iPhone User Guide - Work with multiple messages
    http://help.apple.com/iphone/7/
    Cheers,
    Allen

Maybe you are looking for