How to use 2 MAIL account on one iPad?

I have set 2 MAIL account but I can only see one. How can I get MAIL incoming to my second MAIL account?

If you did create two email accounts on your iPad, when you tap the mail icon and it opens, tap the mail button to take you back to inboxes, where you'll see both accounts.

Similar Messages

  • How can I use different iTunes accounts on one iPad?

    How can I use different iTunes accounts on one iPad?

    You can't, well not easily anyway.  The iPad is not meant as a multi account device. 
    You can Sign Out of your iTunes account in Settings->iTunes and App Stores->Apple ID->Sign Out
    However if you sign in with another ID and then download past purchases with it you will lock out the previous ID for 90 days. Which means it will not be able to be used on the iPad for 90 days. 

  • HT4436 Can I use two iCloud accounts on one iPad

    My husband and I both have icloud accounts we set up on our iphones but share one ipad are we able sync both of our icloud accounts to the ipad? We would like both of our calandars, photos ect to be accessable on the ipad via the cloud. 

    You can set up a secondary iCloud account in system preferences > mail, contacts and calendars, click to add a new account, choose iCloud, click the 'create ID' button.
    Also see...
    http://support.apple.com/kb/ts4020

  • How do I start using my mac mail account on my ipad?

    How do I start using my mac mail account in my ipad?

    No error messages or anything? If your OE is still running and is using POP, there won't be any email for you to retrieve with your iPad because OE has downloaded the email to your computer. To sync email between your computer and your iPad you need to use IMAP settings on both your computer and iPad, not POP.

  • TS2776 How can I transfer e-mail contacts from one IPad to another?

    How can I transfer e-mail contacts from one IPad to another?

    Depends on how big the file is.  If itis only a couple of pages, or mostly text, the easiest way would be to e mail it.  If it is a very large file you are going to need wifi.  Take both pads to starbucks, and e mail it from there.  Or if you have wifi, use drop box, for example. 
    Your other choice, avoiding wifi would be a bluetooth type transfer.  There is an app call bluetooth file lite that reads like it will do what you need.   The good news is it is free.  The bad news is that it has terrible ratings.  For grins, i am installing it now on a pad and a phone, and will see if it works.
    With a bluetooth method, you need both devices in  the same place.  If you are trying to send your file across country, bluetooth will not work for you.  you need e mail or drop box type solution, and if the file is big, you will almost certainly need wifi.

  • How to use different mail address in "from" and "user" property?

    I'd like to use the user enter mail address as the "from" property and use my mail account to send it, but I got error: com.sun.mail.smtp.SMTPSendFailedException: 553 You are not authorized to send mail, authentication is required when set different mail address in "from" and "user" property, how to resolve this problem?

    Basically that's a bad idea. Suppose you used your server to send messages that claimed to come from "[email protected]"? Naturally enough people have tried that, either as a joke or as an attempt at fraud, so that servers will check to see if the message is coming from the server it claims to be coming from. And if it isn't -- as in that example -- it will consider it a forgery. Best case (for you) is that the server will flag it as spam or junk. Worst case is that your server will be blacklisted and other servers will ignore it.

  • How do I add a new Mail account on my iPad with IOS 6.0.1?

    How do I add a new Mail account on my iPad with IOS 6.0.1?

    You should not need to enter anything. the iCloud service is one of the  preconfigured options.
    Just choose the iCloud type from the Add new Mail screen, and enter your details in the next screen.
    If you don't have the iCloud option, but instead have the mobileMe option then you will need to update your iOS.

  • How to use's mail's "perform mail action with message"

    I can't for the life of me figure out how to use "perform mail action with message", I basically want to create a script that get's used on a rule from Mail, but nothing I try will work.
    This is what I started with...
    tell application "Mail"
    perform mail action with message msgs for rule theRule
    end
    end
    This doesn't compile i've seen an example of it being used like this...
    using terms from application "Mail"
    perform mail action with message msgs for rule theRule
    end perform
    end using
    this also doesn't compile, so I'm not sure what it's wanting

    This is one of those annoying things about programming - you have to arrange and spell things exactly right (this gets worse if you have fat fingers). You can look at the dictionary for Mail to see the specifics - in your example you are missing an "s" at the end of the word "message":
    <pre title="this text can be pasted into the Script Editor" style="font-family: Monaco, 'Courier New', Courier, monospace; font-size: 10px; padding: 5px; width: 720px; color: #000000; background-color: #E0E0E0; overflow: auto">tell application "Mail"
    perform mail action with messages msgs for rule theRule
    end tell
    </pre>

  • Itunes could not sync mail accounts to the ipad beacuse the mail accounts are in use by the ipad

    hi all  just syncing pc and ipad after 7.0.3 upgrade and get the message that itunes could not sync mail accounts to the ipad because mail accounts are in us eby the ipad.  i know i have seen several older threads on this,. but now cant find them.  any ideas how to get over this problem message?  many thanks

    When my icloud account is attached to my device I go to mail, contacts, calendars, and there is absolutely no way to remove my mail account. When I deleted my icloud account it suddenly gave me a way to delete and readd my mail account, and synching became feasible again. Synching wasn't possible for me, when I had an icloud account. I suppose the icloud idea still isn't feasible, at least Ican't figure out how to use it.

  • How to use java mail to send email to hotmail box

    how to use java mail to send email to hotmail box??
    i can send emails to other box(my company's email account) but for hotmail, the program didnt print any err or exception the recepient cant receive the mail.
    thanks

    you ust to download activation.jar and mail.jar and add them to your build path.
    i have used the googlemail smtp server to send mail the code is following:
    public void SendMail()
    Properties props = new Properties();
    props.put("mail.smtp.user", username);
    props.put("mail.smtp.host", host);
    props.put("mail.smtp.port", port);
    props.put("mail.smtp.starttls.enable","true");
    props.put("mail.smtp.auth", "true");
    props.put("mail.smtp.socketFactory.port", port);
    try{
         Authenticator auth = new SMTPAuthenticator(username,password);
    Session session = Session.getInstance(props, auth);
    MimeMessage msg = new MimeMessage(session);
    msg.setText(text);
    msg.setSubject(subject);
    msg.setFrom(new InternetAddress(senderEmail));
    msg.addRecipient(Message.RecipientType.TO, new InternetAddress(receiver));
    Transport.send(msg);
    }catch(Exception ex) {
         System.out.println("Error Sending:");
    System.out.println(ex.getMessage().toString());
    and this the SMTPAuthenticator Class which you will need too.
    class SMTPAuthenticator extends javax.mail.Authenticator {
         private String fUser;
         private String fPassword;
         public SMTPAuthenticator(String user, String password) {
         fUser = user;
         fPassword = password;
         public PasswordAuthentication getPasswordAuthentication() {
         return new PasswordAuthentication(fUser, fPassword);
         }

  • How to use Nokia mail for exchange

    How to use Nokia mail for exchange for N82 so that it can push mails for gmail,yahoo.

    It appears that what you are looking to do is from another product at Nokia called Nokia Messaging.  Go to mail.nokia.com and setup a messaging account and add the gmail and yahoo accounts there.  Then SMS send the configuration program to your device.  Install it.  it will add all the accounts to your device on install and will send messages to your device.  So at this point you will have Mail for Exchange for you corporate mail and Nokia Messaging for you personal mail ( gmail and yahoo).

  • How do you transfer Apple IDs from one ipad to another iPad?  I got the new ipad and gave my ipad 2 to my wife who had the first version and now I can't get my Apple ID off so she can use her Apple ID.

    how do you transfer Apple IDs from one ipad to another iPad?  I got the new ipad and gave my ipad 2 to my wife who had the first version and now I can't get my Apple ID off so she can use her Apple ID.

    You don't transfer Apple ID's from one device to another one. You sign out in the settings, )the App Store and iTunes if necessary) and then sign in with the other ID.
    Settings>iTunes & App Stores>Apple ID>Sign out. Them sign in with the other ID. You can sign out of the app store and iTunes as well by going to the featured Atab in the App Store and the music tab in iTunes, swipe to the bottom and access the Apple ID in there.
    You should have erased the iOad before you gave it to her in Settings>General>Reset>Erase all content and settings. That way she could set up the iPad as new with her own Apple ID.
    Be aware of the fact that if you use each others ID's in order to download past purchased content to your own iPads, you will lock yourself out of your own ID as you will have associated your iPad with the other person's Apple ID.
    In other words, if you sign into your wife's ID on your iPad so that you can download an app or an album so that you don't have to pay for it again, you will lock yourself out of your Apple ID for 90 days.

  • How do i setup Mail account on my mac book like in mobile phone? I.e. Don't want to store the mails/attachments on pc, however need the latest emails for given number of days?

    How do i setup Mail account on my mac book like in mobile phone? I.e. Don't want to store the mails/attachments on pc, however need the latest emails for given number of days?
    This helps the storage and purpose of email as well. I could always log into online email account to find history of emails.
    Thanks
    Chai

    How do i setup Mail account on my mac book like in mobile phone? I.e. Don't want to store the mails/attachments on pc, however need the latest emails for given number of days?
    This helps the storage and purpose of email as well. I could always log into online email account to find history of emails.
    Thanks
    Chai

  • My ipohne and ipad use the same account.  My wife wants to setup her own account for the ipad and utilize family sharing.  How can I change the account in my ipad?

    My ipohne and ipad use the same account.  My wife wants to setup her own account for the ipad and utilize family sharing.  How can I change the account in my ipad?

    Hi,
    Are you talking about changing the Apple ID used for purchases in iTunes? If so go to 'Settings->iTunes & App Store-> then 'tap' on the Apple ID that appears and click Sign Out on menu that appears. You can now login with a different Apple ID.
    Regards,
    Steve

  • Not receiving mail sent to and from my own accounts! using latest OS8 and X10.9.5.Using Apple Mail account. Used to be able to do this!

    Not receiving mail sent to and from my own accounts! using latest OS8 and X10.9.5.Using Apple Mail account. Used to be able to do this!

    My system is OS8 and X10.9.5

Maybe you are looking for

  • Conecting iapple tv to non hdmi tv

    Does anybody out there know if there is there a HDMI to component converter out there that will enable me connect my apple tv 3 gen to a non HDMI TV with a RCA coponent video inputs? Thanks

  • How to handle multiple updates and creates sequentially

    Hi All, I have a requirement where multiple updates and creates will happen on an Order (say Purchase Order). I need to capture all these updates/creates and synchronize the other system in real time. In other words, as soon an order is updated/creat

  • Google Latitude Friend list not visible on Firefox 3.6.12, but can be seen on Safari

    I, an Army of Awesome volunteer am posting on behalf of @littlecough on twitter. She can't view her friends list on Google Latitude but can see them on the map. The problem does not arise on her Safari. She uses Firefox 3.6.12. She has tried clearing

  • Context mapping

    Hi Experts, I have 2 input parameters, first one is a drop down selection (context element is Value attribute, because these parameters are simple Type coming from Java Dirctionay), Second one is input field(context element is model attribute). I hav

  • Any other way to display the images in jsp

    Dear All, I had a program in get the image in database and display the image in jsp file. Generally we are using setContenttype(image) and write the binary values in jsp file, is there any other way to store the jpeg file in speciefied folder and vie