Cannot get mail from Gmail account on iPhone 4

iPhone 4 just started to receive message that the gmail account has ID and/or Password are incorrect.  This is not so as I can go to Goggle Chrome browser and receive email.  I have the iOS7 operating system installed.  Help...Thanks

Thanks a lot.
Same issue on iPad air. Solved with your suggestion..
Marco

Similar Messages

  • "This message cannot be sent at this time."  I have been getting this pop-up for 3 days when trying to send out mail.  I don't know what to do!  I cannot send mail from this account on any ISP. Please help!

    "This message cannot be sent at this time."  I have been getting this pop-up for 3 days when trying to send out mail.  I don't know what to do!  I cannot send mail from this account on any ISP. Please help!

    lots of people seem to be havgin a problem sending email from iCloud webmail.
    does your email address have uppercase characters in it?
    if so, try creating an alias in lowercase (go to preferences in iCloud webmail and select 'accounts') and see if email sends okay from that

  • HT201320 My email account is set up properly, I can connect to the Internet, but I cannot get mail from the Mail app.

    My mail account is set up properly, I can connect to the Internet, but I cannot get mail from the Mail app on my iPad.

    Hello echo1946
    Start with the first article to troubleshoot the issue of not getting mail on your iPad. When you get online using safari, check to see if you can log into webmail. Also keep in mind, depending on the account that mail sometimes might not come in if it is a POP account as it may have already been download elsewhere.
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/ts3899
    Mail Settings Lookup
    https://ssl.apple.com/support/mail-settings-lookup/
    iCloud: IMAP
    http://support.apple.com/kb/PH2585
    Regards,
    -Norm G.        

  • I cannot get mail from my sister who was hacked

    I cannot get mail from my sister who was hacked

    If your sister's e-mail account was used to send large quantities of spam, and it has been blocked somewhere as a spammer - which may or may not be what happened - it may be difficult to tell where.  As I said, any e-mail server between you and your sister could be blocking her messages.  A reasonable place to start would be to check with your own e-mail provider and see if their servers are blocking her e-mail.  If that is not the problem, she will need to talk to her own e-mail provider about the problem, and they should be able to assist her.  Alternately, she could switch to a new e-mail address, which might not be a bad idea, since the after-effects of getting hacked and having her account sending out spam could linger for years.

  • Retrieve mail from Gmail account with pop3???

    I want to retrieve e-mail from my account on Gmail in my application, but I have a problem. I cant establishe a connection with pop3 server...
    Do you have an example (full) in Java code for retrieving a mail from Gmail account.
    I used the example from JavaMail Api 1,4 Specifications, but I have a problem with the parameters. (protocol null), and I dont know why...
    Help me, please...

    i hv retrived messages from gmail.but i m geting problem at the time ......
    when i m reading mail which hava attachment.........
    it is only showing attachment name...but not shoing the body part....
    this is my programe........
    plz any body help me its very urgent.........
    give me a programe how to find the attachment name with body part........
    //java msgshow -D -T pop3s -H pop.gmail.com -U user -P passwd
    package MailServer;
    import java.util.*;
    import java.io.*;
    import javax.mail.*;
    import javax.mail.event.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    import java.util.Date ;
    public class msgshow
    static String protocol;
    static String host = null;
    static String user = null;
    static String password = null;
    static String mbox = null;
    static String url = null;
    static int port = -1;
    static boolean verbose = false;
    static boolean debug = false;
    static boolean showStructure = false;
    static boolean showMessage = false;
    static boolean showAlert = false;
    static boolean saveAttachments = false;
    static int attnum = 1;
         static Message[] msgs = null;
         static String body = "";
         static String attachment = "";
         static String indentStr = " ";
    static int level = 0;
    static String from = "";
    static String subject = "";
    static Vector v ;
    public Vector v1;
    static Date date;
    public Vector show()
              int msgnum = -1;
              int optind;
              InputStream msgStream = System.in;
              v = new Vector();
    try
              // Get a Properties object
              Properties props = System.getProperties();
              // Get a Session object
              //debug = true;
              Session session = Session.getInstance(props, null);
              //session.setDebug(debug);
              // Get a Store object
              Store store = null;
              protocol = "pop3s";           
              store = session.getStore(protocol);
                   host = "imap.gmail.com";
                   user = "techzain";
                   password = "zain1234";
                   // Connect
              store.connect(host,port, user, password);
                   //System.out.println ("connected");
              // Open the Folder
              Folder folder = store.getDefaultFolder();
                   mbox = "INBOX";
              folder = folder.getFolder(mbox);
                   //System.out.println ("opened inbox");
              // try to open read/write and if that fails try read-only
              try
                        folder.open(Folder.READ_WRITE);
              catch (MessagingException ex)
                        folder.open(Folder.READ_ONLY);
              // Attributes & Flags for all messages ..
                   msgs = folder.getMessages();
                   //System.out.println (msgs.length);
                   for(int x=0;x<1;x++)
                   try
                        //System.out.println ("inside for");
                        Address[] addList=msgs[x].getFrom();
                             if(addList.length>0)
                                  from=((InternetAddress)addList[0]).getAddress();
                             subject=msgs[x].getSubject();
                             //body=(String)msgs[x].getContent();
                        date=msgs[x].getSentDate();
                        //body=(String)msgs[x].getContent();
                             //msgs[x].setFlag(Flags.Flag.SEEN,true);
                             if(msgs[x].isMimeType("multipart/*"))
                                  boolean bbb=msgs[x].isSet(Flags.Flag.SEEN);
                             System.out.println (bbb);
                                  Multipart multipart=(Multipart)msgs[x].getContent();
                                  for(int i=0,n=multipart.getCount();i<n;i++)
                                  {Part part=multipart.getBodyPart(i);
                                       if(i==0)
                                       body=part.getContent().toString();
                                       else
                                       //body=(String)msgs[x].getContent();
                                       attachment=part.getFileName();
                             else
                                  boolean bbb1=msgs[x].isSet(Flags.Flag.SEEN);
                             System.out.println (bbb1);
                                  body=(String)msgs[x].getContent();
                             //System.out.println ("ok");
                             if(attachment==null)
                                  try
                                       v.addElement(x);
                                       v.addElement(from);
                                       v.addElement(date);
                                       v.addElement(subject);
                                       v.addElement(body);
                                       //System.out.println (v.size());
                                  System.out.println("********* mail "+x+" ***********");
                                  System.out.println("From: "+from);
                                  System.out.println("Date: "+date);
                                  System.out.println("Sub: "+subject);
                                  System.out.println("body: "+body);
                                  System.out.println("Attachment: No attachments......");
                                  System.out.println ("*******************************\n\n");
                             catch (Exception ex)
                                  ex.printStackTrace();
                             else
                                  try{
                                  v.addElement(x);
                                  v.addElement(from);
                                  v.addElement(date);
                                  v.addElement(subject);
                                  v.addElement(body);
                                  v.addElement(attachment);
                                  System.out.println("********* mail "+x+" ***********");
                                  System.out.println("From: "+from);
                                  System.out.println("Date: "+date);
                                  System.out.println("Sub: "+subject);
                                  System.out.println("body: "+body);
                                  System.out.println("Attachment: "+attachment.toString());
                                  System.out.println ("*******************************\n\n");
                             catch(Exception ex1)
                                  ex1.printStackTrace();
                             //     System.out.println (v.size());
                   catch (Exception ex)
                        ex.printStackTrace();
              catch(Exception e)
                   e.printStackTrace();          
              System.out.println (v.size());
              return v;
         public static void main(String argv[])
         new msgshow().show();
              Flags flags = m.getFlags();
              StringBuffer sb = new StringBuffer();
              Flags.Flag[] sf = flags.getSystemFlags(); // get the system flags
              String s = "";
              for (int i = 0; i < sf.length; i++)
                   if (sf[i] == Flags.Flag.SEEN)
                        s = "\\Seen";
                        System.out.println ("Seen Message");
    */

  • TS3988 How can I verify my icloud account without being able to get mail from the account?

    How do I verify my icloud account without being able to get mail from that account?

    The verification email will be sent to your primary Apple ID email address.

  • IOS 4.3.3 Cannot Get Mail from Comcast Exchange Server

    I upgraded both my ipad and iphone to 4.3.3 yesterday and now I cannot access email from the Comcast Business Exchange server.   I have not changed any of the parameters on the ipad or iphone.  When I try to access the Comcast Server at mail.hmc1.comcast.net I get the message Cannot Get Mail on both my ipad and my iphone.  Everything worked great before the 4.3.3. upgrade.   All of my gmail accounts and my pop3 email account still work on the ipad and iphone.   Please help

    Have you tried removing the accounts and re-adding them? That generally seems to work in an "if all else fails" situation but I've noticed that sometimes, troubleshooting can be too stressful, and it is more worth it to spend 2 minutes re-creating the account and another 10 minutes to let everything sync up.
    Just my $0.02

  • Cannot get email from tiscali account

    Hi,
    I recently changed my password on my tiscali email account. i can get my emails OK on the computer but ever since I have been unable to get emails from this account on my iphone.I have changed the password on the phone, deleted and re-added account, turned phone on and off, in fact everything i can think of but still get the error message 'cannot get mail' the user name or passwordfor tiscali.co.uk is incorrect.
    i have another email account not from tiscali and i can get the emails ok , also can access internet.
    Can anyone help?
    many thanks,
    jane

    I assume that though your signature says you are running 10.4.8 you are actually running Lion or Mountain Lion? If so please amend the signature to prevent confusion.
    Go to System Preferences>iCloud and uncheck Mail in the list there: then re-check it. This should set Mail up again to access the account. If this doesn't work, sign out completely, reboot, then sign back in again. You iCloud data will disappear from your Mac but reappear when you sign back in.

  • How do I stop the message "user name or password for iCloud is incorrect" from popping up 2 times in a row when i try to get mail from other accounts? thank you in advance

    How do I stop the message "Cannot get mail. The user name or password for iCloud is incorrect" from popping up 2-4 times consecutively every time I choose MAIL on my iPhone 4,  7.1.1  I have to select "OK" 2-4 times each time before I can read other email accounts.  I used to have an "@me.com" account which I think was automatically changed to an "@icloud.com account."  I opened a new iCloud.com account yesterday because I could not figure out how to get in the old ones.  I want to delete the original @me & original iCloud account.  When I try to delete the account, they tell me my DOB is wrong. I just want those pop ups to stop.  Thanks in advance for your help.

    Hi Suzanne,
    It sounds like you’re running into a password issue with an older Apple ID that’s setup on your iPhone, which is preventing you from removing an iCloud account from your device. Take a look at the article linked below, it outlines all of the possible ways to change an Apple ID password.
    If you forgot your Apple ID password - Apple Support
    After you enter your Apple ID, there are three ways you can change your password:
    Answer your security questions. Use these steps if you know the answers to your security questions.
    Use email authentication. We'll send you an email that you can use to change your password.
    Use two-step verification. If you set up two-step verification, you can use it to change your password. You just need your recovery key and a trusted device.
    So long,
    -Jason

  • IPad2 cannot get mail from inside work wlan

    Everything on my iPad2 works fine when I am at home on my home network.
    At work, I login through a wifi wlan router using my work user name and password.  At that point, the connection to the exchange server works fine as do the internet and intranet connections.  However every time I try to access my mobileme or Gmail accounts, I get the following notice (sub the gmail server of the gmail warning):
    Cannot Get Mail
    The mail server "mail.mac.com" is
    not responding.  Verify that you have
    entered the correct account info in
    Mail settings.
    OK
    Again, when I get home, the connection picks up and all my email and calendar information is connected and up-to-date when I open either app.  I suspect that this has to do with a blocked port on our firewall.  I have no idea which one, or how to fix this.
    Has anyone else seen this and figured out how to fix it?

    Our IT group is PC only, so there will be no help there...
    As to the question about the gmail sever, just substitute "imap.gmail.com" for the "mail.mac.com".  Other than that, the error message is identical.
    I can log in to gmail in safari on the ipad just fine, but mobileme does not let you log in from safari.  Instead, it walks you through the setup of the mobileme account on the ipad - which doesn't help much...

  • Mail not receiving incoming mail from gmail account

    I have an imac with 10.5 that has suddenly stopped accepting email in one of my gmail accounts, but still gets it from another. I synched my imac with my ibook earlier today. The ibook has the same problem accepts mail from the account that the imac doesn't etc.
    Any help solving this problem would be greatly appreciated.
    dc

    Hi,
    Did you select “Directory Management Service” option, if so, please make sure you configure the Central Administration application pool identity account to have the Create, delete, and manage user accounts right to the container that you specify in Active Directory.
    Did you install Exchange server 2003 in your MOSS environment? If so, you should add an SMTP connector in Exchange Server, if you don’t know how to do that, you can post your issue into the following forum:
    http://social.technet.microsoft.com/Forums/en-US/exchangesvrdeploy/threads
    Also, please check whether your configuration meet the following requirements, If not, correct them and check the effect.
    ·         The application pool account for Central Administration, the logon account for the Windows SharePoint Services Timer service, and the application pool accounts for your Web applications should have the correct permissions to the e-mail drop folder.
    ·         The domain controller running Active Directory has a Mail Exchanger (MX) entry in DNS Manager for the mail server that you plan to use for incoming e-mail.
    For more information about how to configure incoming e-mail settings, please refer to the following article:
    Configure incoming e-mail settings
    http://technet.microsoft.com/en-us/library/cc262947.aspx
    Introduction to incoming e-mail
    http://office.microsoft.com/en-us/sharepointtechnology/HA100823061033.aspx
    Demo: Configure a SharePoint Server 2007 site to receive e-mail
    http://office.microsoft.com/en-us/sharepointserver/HA102047921033.aspx?pid=CH101788401033
    Enable and configure e-mail support for a list or library
    http://office.microsoft.com/en-us/sharepointtechnology/HA100823071033.aspx?pid=CH101215271033
    Rock  Wang 
    Rock Wang– MSFT

  • Cannot get mail-the gmail username or password is incorrect

    What does it mean when my iPad cannot get mail?

    It means that there is an error in your server settings, specifically the username or password is incorrect.
    Preferences > Accounts > Google Account Settings > Re-enter proper account name and password. 
    Are you using two-step verification for gmail? If so, see this thread:
    The New iPad: Password Incorrect for all Gmail Accounts

  • Since upgrading to IO6 system, cannot download mail from gmail.  Any ideas?

    With new IO6 system, cannot get mail on my iPad 2, any suggestions?

    I had the same issue on both of my devices. I just deleted my account and re-entered my details and it is working fine now.

  • Sending mail from alias accounts Sweden. iPhone.???????

    Sending mail from alias accounts Sweden.
    STILL cant send mail from my iPhone via one of my e-mail alias accounts???
    sooo much time has gone by
    so many updates to iPhone and my operating system
    new iPhone on the way here and...
    still cant send mail from my iPhone
    yes i can set up another account through a third party
    NO i dont want this. i expect to be able to use the mac mail i already have...
    anyone know whats going on?
    Have i missed apples solution to this.
    anyone know how its done and...
    please dont say sign up with someone else or create an account with someone else
    For the record yes i can use my mail from my iPhone BUT BUT BUT it shows my ORIGINAL email account address BAD BAD BAD.
    answer anyone!!!

    I have to agree with you , I too was disappointed to see that with IOS 4 on my iphone I still cant send from an alias. This is a feature thats available with the .me web access so why not the iphone mail app? If they can't do it, then at least let me be able to use .me via safari on the iphone and ipad.
    Joe
    Message was edited by: Joe Tye

  • Tracking Mail Flow " user cannot get mail from server"

    Please help to tracking message from mail flow on ECP.   Why user cannot get mail  ?
    Delivery Report for [email protected]
    Pending
    3/19/2014 9:36 AM exchmb01.test.in.th
    The message has been transferred from exchmb01.test.in.th to
    exchmb02.test.in.th
    3/19/2014 10:33 AM exchmb01.test.in.th
    No further information is available about this message because the logs are no longer available.

    Hi,
    I recommend you enable message tracking, using the following cmdlet:
    Set-TransportService xxx -MessageTrackingLogEnabled $true
    And then use message tracking log to check if there is any information.
    Here is a helpful article for your reference.
    Message Tracking
    http://technet.microsoft.com/en-us/library/bb124375(v=exchg.150).aspx
    Hope it helps.
    Best regards,
    Amy
    Amy Wang
    TechNet Community Support

Maybe you are looking for