Can send mail, can't receive ipod 3g

Hi.  I can send mail but when trying to receive it says downloading but nothing happens.  Please help.  Thank you, Cindy

See:
iOS: Unable to send or receive email
Did it work before?
Does it now work on another device?

Similar Messages

  • I can send mail but cannot receive it.  What is the problem???

    I just purchased an iPad.  I can send mail but not receive it.  What is the problem????

    beverly220 wrote:
    Yes I get error messages.  I can send & receive messages from our home computer & from a iPod Touch.
    Are we supposed to guess what the error messages are that you get? We can't help unless you provide some information. We can not see your iPad so can not see the error messages.

  • Can not send mail, but do receive mail at a different location

    I am on my way to college now and while staying at a hotel I can connect to the internet using the hotel high speed wired connection at the room. When I try sending mail using my MacBookPro mail application, I can not send any mail, but can however receive email. It keeps giving me error messages regarding the server for outgoing mail.

    Mail Help has some articles devoted to sending problems, e.g. I can't send email or I can't send email because the connection to the server on port 25 timed out. You may want to take a look at them in case there is something there that applies to you.

  • I can send mail but cannot receive mail

    I have just moved my e mail to my new iMac using the same POP details that I had on my old pc. I can now receive e mails but am unable to send. I have chacked Google for solutions and tried some of them but the issue remains. Any suggestions? I am using Lion.

    What does Mail/Window/Connection Doctor Show? If the server is red, select it and look at the Show Details box.
    Troubleshooting sending and receiving email messages

  • Can't send mail, but still receive it, why?

    I can no longer send mail from my computer, but I can still receive it. What is going on? This happened to my laptop first, but then seemed to just cure itself. with np intervention. Is this possibly the result of iCloud being hacked as reported in the papers? I would most appreciate any help in correcting this situation. (I've already run Disk Utility, repaired permissions and rebuilt the directory with DiskWarrior - - but these did not fix the problem.

    Troubleshooting Apple Mail
    What does Mail/Window/Connection Doctor Show? If the server is red, select it and look at the Show Details box.
    Troubleshooting sending and receiving email messages
    Troubleshooting sending email messages

  • I can send mail but cannot receive it on my iMac since upgrading to Yosemite

    I can send Mail but I cannot receive it on my iMac Mail account, have checked all account information and it is correct.

    Hey phillipfrompaupack,
    I see that you are having issues with your mail in Yosemite. Here is an article for you that will help you troubleshoot these issues:
    OS X Mail: Troubleshooting sending and receiving email messages - Apple Support
    http://support.apple.com/en-us/ts3276
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • TS3276 I am able to send mail but cannot receive mail. Can someone help?

    I am able to send email but cannot receive mail.  I am connected to internet.  I can go thru Safari to receive.
    Would appreciate any help.

    What does Mail/Window/Connection Doctor Show? If the server is red, select it and look at the Show Details box.
    Troubleshooting sending and receiving email messages

  • I cannot send mail   but I receive mail why, I cannot send mail   but I receive mail why

    How do I send mail   I recieve mail

    also which browser? for example with yahoo mail i can receive and send with safari and tenfourfox but i can only receive with firefox.

  • Sending mail from DB - receiving empty mail

    Guys - Hope you doin well -
    I have a problem - i am sending mail from my db - i am using oracle 9i -
    the mail successfully sent to the receipent but with out any message - Below is the code that i am using to send mail -
    please help -
    create or replace package email is
    procedure send_mail(pi_frmadd in varchar2,
    pi_tooadd in varchar2,
    pi_subjct in varchar2,
    pi_msg in varchar2,
    pio_status in out nocopy varchar2);
    end email;
    show err
    create or replace package body email is
    g_maicon utl_smtp.connection;     
    procedure open_mail_server(pio_status in out nocopy varchar2) is
    l_maihst varchar2(100) := 'localhost';
    -- mail server IP address/name, instead of hardcoding this can be made a system parameter.
    begin
    pio_status := 'OK';
    g_maicon := utl_smtp.open_connection(l_maihst);
    utl_smtp.helo(g_maicon, l_maihst); -- perform initial handshake.
    exception
    when others then
    pio_status := substr(sqlerrm, 1, 200);
    end open_mail_server;
    procedure close_mail_server(pio_status in out nocopy varchar2) is
    begin
    pio_status := 'OK';
    utl_smtp.quit(g_maicon);
    exception
    when others then
    pio_status := substr(sqlerrm, 1, 200);
    end close_mail_server;
    procedure send_mail(pi_frmadd in varchar2,
    pi_tooadd in varchar2,
    pi_subjct in varchar2,
    pi_msg in varchar2,
    pio_status in out nocopy varchar2) is
    errexc exception;
    begin
    --< open connection >--
    pio_status := 'OK';
    open_mail_server(pio_status);
    if pio_status != 'OK' then
    raise errexc;
    end if;
    --< assign from and to >--
    utl_smtp.mail(g_maicon, pi_frmadd);
    utl_smtp.rcpt(g_maicon, pi_tooadd);
    --< create message text >--
    utl_smtp.open_data(g_maicon);
    utl_smtp.write_data(g_maicon, 'From: "' || pi_frmadd || '"<'
    || pi_frmadd || '>' || utl_tcp.crlf);
    utl_smtp.write_data(g_maicon, 'To: "' || pi_tooadd || '"<'
    || pi_tooadd || '>' || utl_tcp.crlf);
    utl_smtp.write_data(g_maicon, 'Subject: ' || pi_subjct || utl_tcp.crlf);
    utl_smtp.write_data(g_maicon, pi_msg);
    utl_smtp.close_data(g_maicon);
    --< close connection >--
    close_mail_server(pio_status);
    exception
    when errexc then
    return;
    when others then
    pio_status := substr(sqlerrm, 1, 200);
    end send_mail;
    end email;
    show err
    --Cut-paste the below code and execute it to send email from Oracle.
    --Specify the receipent e-mail ids.
    set serverout on size 1000000
    declare
    l_frmadd varchar2(100) := '[email protected]';
    l_tooadd varchar2(100) := '[email protected]';
    l_subjct varchar2(100) := 'Cool Oracle mail';
    l_msg varchar2(500) := 'You have received this mail from the database server BINGO!!' ||
    utl_tcp.crlf || 'Checking if the content is acceptable!!!' ;
    l_status varchar2(200);
    begin
    email.send_mail(l_frmadd, l_tooadd, l_subjct, l_msg, l_status);
    dbms_output.put_line(l_status);
    end;
    Your earlier replys would be highly appreciated - because this is some sort of an urgent request and i can't figure it out what is the problem - please consider ..
    YV.

    Vohra,
    Take a look at this AskTom thread -
    http://asktom.oracle.com/pls/ask/f?p=4950:8:17145199247327995192::NO::F4950_P8_DISPLAYID,F4950_P8_CRITERIA:255615160805
    It details how to use the utl_smtp package to send emails.
    I have to ask however, since you're not doing anything 'fancy' like adding email attachments, why aren't you using the (much simpler) htmldb_mail package to send email?

  • I send mail but cannot receive any in Outlook 2007. Is it FF?

    Hi all, MERRY CHRISTMAS FROM GREECE!!!
    I am a Webnode user and i have created an email account with my domain ([email protected]). I created an account to Outlook Express 2007, setting POP3 and STMP and "...requires authentication..." as i should. I can send email through OE but i can't receive any, even if i ask Webnode to forward mails to another active mail account (e.g Gmail). I delete and rewrite the settings to OE "tool" but nothing happens... Is it something to do with Firefox? My firewall maybe?
    I am looking forward for your help because it is a professional email account and it slows down my work!!
    Thanks for your help in advance!!

    You need to update your system. You can start your search from here;
    https://www.microsoft.com/en-us/newsearch/result.aspx?q=Outlook%20Express%20download

  • Cannot send mail but get receive mail

    Cannot send mail but can receivr mail

    I had this problem, too, when I took my laptop to work and tried to send mail using their wireless settings.  (I have never had this problem with wireless internet at home.)  After a lot of research it appeared to be a port issue.  Apple and Yahoo directed me to contact AT&T, my email server provider, to inquire if there was another port setting or off-line port that could be used.  This turned out to be too complicated because I had to get my boss's wireless codes, etc.  I got around the whole thing by logging into my email through Yahoo rather than Apple's Mail program.  This allowed me to send emails at work with no problems.  Hope this helps.

  • Mail Sends Mail does not receive!!!

    If I send mail there is no problem but if I try and receive I just get a little plink noise and nothing comes in.
    I have followed recent topics on this and tried the following:
    1 Connection Doctor shows all connections etc in good working order
    2 There was a thread about keychain passwords affecting mail, so I re set all keychain passwords to do with mail
    3 I have followed BDAqua advice on the safe re boot then repair disk permissions etc
    4 I have removed all of my messages from my webmail account including the trash and sent items to remove any message that might be affecting my Mail.
    I am truly exasperated, webmail works but I just want my Mail back
    To replace Mail with Eudora etc is only an option if I use the free to use version as I have no Credit Card and the nearest Mac shop is in Johannesburg 2,500kms away!
    I am currently downloading update 2009-001, maybe this will unlock what is happening....

    Hi ManinMalawi, and a warm welcome to the forums!
    3 I have followed BDAqua advice on the safe re boot then repair disk permissions etc
    Did it include this?
    First, Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, then move the following folder & file to the Desktop.
    Move this Folder to the Desktop...
    /Users/YourUserName/Library/Caches/Mail/
    Move this file to the Desktop...
    /Users/YourUserName/Library/Mail/Envelope Index
    Reboot.
    To replace Mail with Eudora etc is only an option if I use the free to use version as..
    All there is is the Free Version anymore, Quaalcom released it to Open Source, and though it hasn't been updated since 6.2, it works just fine/great on the latest OSX.

  • Can't send mail from my new ipod touch

    Got a brandnew ipod touch 32gig and everything works fine except the sending of emails. I always get the error message "the connection to the outgoing server smtp.xxxx.ch failed". I have no problems to send emails from my computer with the identical settings. In the settings section of the ipod touch/accounts/outgoing mail server/advanced/outgoing settings/server port, there is a port selected with the number "587". I did not know that I need to have a port selected when there is no authentication necessary. I tried different port numbers but nothing changed. Any ideas?
    Thanks for help in advance.

    So long as you are connected to WiFi and the email is configured correctly you can both view and send with the iPod Touch.
    @OP: Do you have that email account setup on your computer? If you connect your iPod Touch and look in iTunes. Click on the name of your iPod under Devices. You should now be at the summary page. Click on over to the Info tab. Choose Sync Mail accounts. Chose the application you use and then put a check next to your account. Of course, thats all assuming you have this email setup on your computer already.
    Have a look at this article.
    Syncing iPhone and iPod touch with your computer

  • Can send mail but not receive -- connection doctor OK, GetInfo shows msgs

    In the last couple of days I stopped receiving email on my Mac in the Mail app, but not my PC. Both access POP3 accounts at the same ISP, different POP3 accounts. All software is patched to latest version using Software Update -- PowerMac G5 Dual, latest OSX version. On the Mac, connection doctor says I'm A-OK (internet connection, POP connection, SMTP connection.) Also, if I do a Get Info on the inbox and show messages on the server, it shows 75 messages on the server. I have not retrieved messages to my knowledge (so I don't think the server thinks I already downloaded them), and the "Messages that have been downloaded to my Mac" pulldown option in Get Info confirms this, by not showing any of the 75 messages in the Show all messages pulldown option. But -- Get Mail does nothing! I have tried rebooting, deleting and recreating the account, etc. Since I can get POP mail for another account at the same ISP on my PC, and I have touched nothing on the Mac, and all the diagnostics show the connection and POP3 chat is working perfectly, this very strange. I do not think I have applied any patches or anything that might screw it up, but who knows.
    The only strange thing that might be a clue is the little spinning status indicator next to the InBox label runs for about 30 sec or so before it decides not to do anything -- seems a little long. Any suggestions? Any way to do detailed debugging of the POP3 session to see if the Mac-server conversation is wanked up somehow?
    Thanks!
    David

    For POP accounts, Mail uses a file within the account folder to keep track of which messages have already been downloaded. Deleting it should cause Mail to download everything still on the server as if new. I don't think it'll work in your case, but try it anyway just to be sure:
    1. Quit Mail.
    2. In the Finder, go to ~/Library/Mail/POP-username@mailserver/.
    3. Locate one or two files named MessageUidsAlreadyDownloaded and move them to the Trash. Mail 1.x used MessageUidsAlreadyDownloaded to keep track of which messages had already been downloaded. Mail 2.x uses MessageUidsAlreadyDownloaded2 for the same purpose.
    You can use the Account Info window first to remove from the server any messages you don't want to be downloaded again.
    You may try creating a new user account in System Preferences > Accounts, set up mail anew there, and see whether the problem happens there as well.
    Another thing you may try is using a different method to connect to Internet, if possible. Also, if Preferences > Check for new mail is set to Every minute, changing it to something greater (e.g. Every 5 minutes) might help.
    Something that usually works is removing some messages from the server (download them with another mail client first, to avoid losing them). Sometimes, Mail chokes on a message it cannot download, and that prevents it from downloading the rest as well.
    Any way to do detailed debugging of the POP3 session to
    see if the Mac-server conversation is wanked up somehow?
    Detailed debugging no, but looking at the Console could be informative:
    1. Open /Applications/Utilities/Console.
    2. From the File menu, choose either Open Console Log, or Open System Log, or both, so that the Console application displays the contents of both system.log and console.log.
    3. Try to reproduce the problem and look at the bottom of the Console windows for messages that might be written there as a result. They may provide some clues as to what the problem is.

  • Can send mail but cannot receive

    I have my Gmail setup to download via the Mac Mail (v3.6). I'm running OSX 10.5.8.
    I've had no problem until 9-Aug-10. At that point the application appears to have stopped downloading any messages. I can send messages fine. When I click "Get Mail", nothing happens for a brief moment, then I here a beep. No messages are downloaded.
    Can someone suggest a troubleshooting path?

    Hi Popeye. You're welcome.
    Has Mail ever worked on this computer for this
    account? It could be that you haven't configured the
    account properly, i.e. haven't chosen the right
    authentication method in Preferences > Accounts >
    Advanced, or something like that.
    Hi David,
    Yes, my MacMail used to work. At that time, I was on a local ISP, on a dial-up connection. Now I have HughesNet satellite connectivity. Maybe you can verify that my settings are right.
    In the Accounts window, all three first boxes are checked (enable this account, include when checking for new mail, remove copy when retrieving from server [after one week]), the next section (prompt me...) is grayed out. I'm taking from port 110, and I have MD5 challenge/response selected.
    Does this sound right?
    Thanks,
    PTP

Maybe you are looking for