Windows Live Sending mail Issue

Hi Team,
As I can't able to send mails to more than 50 recepients on a single go. I'm getting this error
Subject '*************'
Server: 'smtp.gmail.com'
Windows Live Mail Error ID: 0x800CCC0B
Protocol: SMTP
Port: 25
Secure(SSL): Yes
I changed the Port to 587 and 465 but no result. Please help me out how to tackle from this situation

That error ID indicates that the destination is busy, rather than you've reached the recipient limit. Gmail seem to have multiple limits depending on method of sending, but from what I can see in this instance the recipient limit would be 100 rather than
50 so that's not your issue.
Most common cause for that error is local anti-virus / firewall software causing issues. There's a thread discussing the same issue here
http://answers.microsoft.com/en-us/windows/forum/windows_vista-networking/error-code-0x800ccc0b-when-trying-to-send-email/31dce8ff-7b1a-4b25-b3bf-eba5eccabd29 and includes a few troubleshooting steps, but the main initial one is to disable any AV software
you have installed on your machine temporarily and try sending again. If that works then it's definitely the AV software causing the problem, and configuring it to no longer scan outbound mail may resolve it, depending on the AV software you're using.

Similar Messages

  • Windows Live e-mails

    Something happened to my Windows Live e-mails.  When they appear on the Windows Live site, the left margin is cut off so that I cannot see all the letters on that side.  I can make the print smaller but the left margin stays the same--cut off.  Can you tell me how to re-format the e-mail site so that the margins are correct?

    I saw your post and forwarded it to the right people for review. You should hear back from someone shortly on the HP Support Forum.
    Regards,
    eric-g
    @Chrystna79
    I no longer work for HP.

  • Can I set up a Windows Live E-mail Account on my iPod Touch?

    Can I set up a Windows Live E-mail Account on my iPod Touch?

    Windows Live, Hotmail, or MSN email accounts on iOS

  • Oracle PLSQL Send mail Issue.

    Hi All,
    I used to send some emails using oracle PLSQL code in both 10 g and 11g.But now days mail is getting triggered without any body in both the 10g and 11g versions.
    Some mails are triggering perfectly.I am unable to sort out the issue, please help me in this concern.

    Code that i have used is:
    create or replace
    PROCEDURE Sendmail(V_MAILHOST VARCHAR2,V_FROM VARCHAR2,V_TO clob ,V_CC VARCHAR2, V_SUBJECT VARCHAR2,V_MSGTEXT VARCHAR2,V_MODULE VARCHAR2) AS
      l_mail_conn   UTL_SMTP.connection;
      l_subject      VARCHAR2(100):='test mail';
      l_msg_text   VARCHAR2(500):='hi , testing alert mail';
      v_reply      utl_smtp.reply;
      L_RECIPIENTS  clob;
      l_recipients1  clob;
      V_TO1            clob;
      v_errmsg        VARCHAR2(500);
      mul_recip        NUMBER;
      mul_recip1        NUMBER;
      slen             NUMBER:=1;
      slen1             NUMBER:=1;
      V_errcode        VARCHAR2(500);
    BEGIN
      l_mail_conn:= UTL_SMTP.open_connection(v_mailhost,25);
       v_reply :=UTL_SMTP.helo(l_mail_conn, v_mailhost);
       v_reply :=UTL_SMTP.mail(l_mail_conn, v_from);
      -- V_TO1:=null;--'[email protected]';
       SELECT INSTR(V_TO,',') INTO mul_recip FROM dual;
        IF mul_recip =0
        THEN
             utl_smtp.rcpt(l_mail_conn, V_TO );
        ELSE
            WHILE(INSTR(V_TO,',',slen) > 0)
            LOOP
                  l_recipients := SUBSTR(V_TO, slen, INSTR(SUBSTR(V_TO,slen),',')-1);
                  slen := slen+INSTR(SUBSTR(V_TO, slen),',');
                utl_smtp.rcpt(l_mail_conn, l_recipients);
            END LOOP;
                l_recipients := SUBSTR(V_TO, slen);
                utl_smtp.rcpt(l_mail_conn, l_recipients);
        END IF;    
         IF V_CC IS NOT NULL
         THEN
          SELECT INSTR(V_CC,',') INTO mul_recip1 FROM dual;
        IF mul_recip1 =0
        THEN
             utl_smtp.rcpt(l_mail_conn, V_CC );
        ELSE
            WHILE(INSTR(V_CC,',',slen1) > 0)
            LOOP
                  l_recipients1 := SUBSTR(V_CC, slen1, INSTR(SUBSTR(V_CC,slen1),',')-1);
                  slen1 := slen1+INSTR(SUBSTR(V_CC, slen1),',');
                utl_smtp.rcpt(l_mail_conn, l_recipients1);
            END LOOP;
                l_recipients1 := SUBSTR(V_CC, slen1);
                utl_smtp.rcpt(l_mail_conn, l_recipients1);
        END IF;    
    END IF;        
    v_reply :=utl_smtp.open_data(l_mail_conn );
    utl_smtp.write_data(l_mail_conn, 'From: ' || V_FROM || utl_tcp.crlf);
    utl_smtp.write_data(l_mail_conn, 'Subject: ' || v_subject || utl_tcp.crlf);
    utl_smtp.write_data(l_mail_conn, 'To: ' || V_TO || utl_tcp.crlf);
    utl_smtp.write_data(l_mail_conn, 'CC: ' || V_CC || utl_tcp.crlf);
    utl_smtp.write_data(l_mail_conn, 'Content-Type: text/html' || utl_tcp.crlf);
    UTL_SMTP.WRITE_DATA(L_MAIL_CONN, V_MSGTEXT );
      if length(V_TO)>=4000 then
      dbms_output.put_line('none');
      else
       insert into MAIL_LOG(MAILFROM, MAILTO, SUBJECT, LOGGED_DATE, MAIL_STATUS, MAILCC, MAILTEXT,MODULE_ID)
          VALUES(V_FROM,v_to,V_SUBJECT,SYSDATE,'sent',V_CC,V_MSGTEXT,V_MODULE);
        end if;
        utl_smtp.close_data(l_mail_conn );
        utl_smtp.quit(l_mail_conn);
    EXCEPTION
    WHEN utl_smtp.transient_error OR utl_smtp.permanent_error THEN
        BEGIN
          UTL_SMTP.QUIT(l_mail_conn);
        EXCEPTION
          WHEN UTL_SMTP.TRANSIENT_ERROR OR UTL_SMTP.PERMANENT_ERROR THEN
            NULL; -- When the SMTP server is down or unavailable, we don't have
                  -- a connection to the server. The QUIT call will raise an
                  -- exception that we can ignore.
        END;
         v_errmsg:='Failed to send mail due to the following error: ' ||SQLERRM||' errcode '||SQLCODE||'from :'||V_FROM|| ' V_TO '||V_TO;
    INSERT INTO MAIL_LOG(MAILFROM, MAILTO, SUBJECT, LOGGED_DATE, MAIL_STATUS, MAILCC, MAILTEXT,MODULE_ID)
    VALUES(V_FROM,v_to,V_SUBJECT,SYSDATE,v_errmsg,V_CC,V_MSGTEXT,V_MODULE);
    END Sendmail;

  • Mail 7.0 (1822) Sending Mail Issues

    In OS X 10.9, I consistently have issues when sending mail, the message seems to stall at the outgoing server for some reason and Mail forces me to select a different outgoing server.  After I select the same server as is already correctly configured, Mail.app finally sends the message.
    Steps I've taken to replicate this issue:
    Removed all email accounts from: System Preferences/Internet Accounts
    Rebooted MacBook
    Verified all accounts were removed
    Rebooted once more
    Added accounts back to Mail.app
    Rebooted once more
    Problem persisted so I repeated above 3 times before sending this message.
    Problem will not go away!  I didn't have this issue in 10.8.x
    Types of Mail accounts:
    MS Exchange (config as Exchange, not IMAP)
    iCloud (Mac mail)
    GoogleMail IMAP account
    Standard IMAP account

    I installed Mavericks on my iMac as a completely new installation due to a replaced dead hard drive. I also have a powerbook with a standard Mavericks install. Both are updated to the 1822 build of Mail version 7.0. My host is 123-reg.
    Recieving emails works fine. Sending is near impossible, yet strangely intermittent. However both computers will either work, or not, for no apparent reason. I have been in touch with 123-reg support who suggest it is due to the ISP ( in my case BT). My iPhone 5s meanwhile hums along happily which is on O2.
    I cannot pinpoint any one change at my end that makes any sort of permanent difference. I have made all the normal checks and gone through the loops of changing ports and security etc. It sometimes works and sometimes don't. Everytime the error message is the same:-
    Connections to the server “smtp.123-reg.co.uk” on the default ports timed out.
    Activity monitor shows the turning Barbers Pole but just hanging there. Suddenly nearly all my messages were sent! I thought I might have done something my temporarily deactivating my account in system prefs/internet accounts. So I turned on my laptop, but that still would not work, nietehr would the iMac upon my return to it.
    Activity monitor seems to show some very quick actions that I cannot read. I wonder if it is set to go too fast for the server to respond?
    Hope this helps someone work out a fix as I need one as well.

  • Send mail issue

    I am using JavaMail API 1.1.3 to compose and send mail messages. It is possible to send messages both in text or HTML format with or without attachments. But recently just one user has complained that some mails sent out from our system is not being parsed by recipient servers. There is no pattern to the problem - apparently people from different companies using different mail servers are reporting this problem.
    Below is part of the header of a mail that was sent from my server. Does anyone know what could be the reason? I suspect the content-transfer-encoding: 7bit. If that is the culprit, how can I change it?
    Thanks in advance.
    Message-ID: <12173.1045192088842.JavaMail.IUSR_RLIVE-DEV@RLDEVIIS>
    Date: Fri, 14 Feb 2003 14:08:08 +1100 (GMT+11:00)
    Subject: Test header
    Mime-Version: 1.0
    Content-Type: text/html
    Content-Transfer-Encoding: 7bit

    Hi asheque have a look on following link.
    http://ccm.redhat.com/asj/mime/
    rest if u think there is some problem withe encoding u can try addheader Content-Transfer-Encoding Quoted-printable or something like that.

  • Smtp - sending mail issues

    Bought a new Macbook Pro and have a home wireless connection (Orange). Can send and receive email (Pipex is my office ISP). Had to change smtp setting to Orange's in order to send mail.
    Problem: I intend to use my MacBook at various locations and have successfully logged into several wireless connections. Web browsing and receiving email no problem. Sending email never works other than at home?
    I cannot beleieve that I have to change smtp settings for every network I connect to in order to send email - It will be impossible.
    Pipex and Orange are not interested and offer no help at all. Help please.
    Not a .Mac user.
    MacBook Pro   Mac OS X (10.4.9)  
    MacBook Pro   Mac OS X (10.4.9)  

    Most networks block sending mail on port 25, except for their own customers.
    Ask Orange or Pipex (or google for it) if they have an alternate smtp port (like 587) that works instead of port 25.

  • Windows Live E-mail as Tile on Nokia 822?

    Can someone please tell me how to create a Tile for my Live e-mail account?
    Solved!
    Go to Solution.

    Have you added that e-mail account in your settings?  If you have look at the last paragraph, if not here is some direction:
    go to your Settings
    select "email+accounts"
    select "add an account"
    Choose an account to add.  If you migrated your Live account to Outlook.com then choose "Outlook".  If not and you don't see what you need then choose "other account" and enter the email address and password.
    Once you have added an account it should automatically get pinned to your start screen.  If for some reason it hasn't, from the start screen you can swipe left to see all apps.  Your new e-mail tile should be on there and you can pin it to the start screen.
    I hope that helps.  I was able to get my hotmail account to work with Outlook which then allows me to sync email, contacts, calendar, and tasks with my phone.

  • In using my Hotmail Windows Live e-mail account I can't upload a pic as an Attachment. In testing my Silverlight Plugin it tests okay. I've sent many "Crash Reports". Would prefer sending an e-mail to explain all aspects of this prob.

    I tried doing this using my gmail email account, but there I get the msg that Firefox crashed. I use SE Aware, Spybot and Malware for securing my pc. After using each of these to do a computer scan my pc still crashes giving me that msg that my Silverlight Plugin has crashed. When I go to Mozilla Firefox to test my Plugins Silver test okay. Tomorrow I'll try another pc and report back the results.
    In anticipation of a reply, I kindly thank you for your help.

    I tried doing this using my gmail email account, but there I get the msg that Firefox crashed. I use SE Aware, Spybot and Malware for securing my pc. After using each of these to do a computer scan my pc still crashes giving me that msg that my Silverlight Plugin has crashed. When I go to Mozilla Firefox to test my Plugins Silver test okay. Tomorrow I'll try another pc and report back the results.
    In anticipation of a reply, I kindly thank you for your help.

  • Mail automatically opens a new compose window after sending mail

    Just recently, my Mail program has started opening a new compose window after I send an email. It's accompanied by the "you did something wrong" tone that my computer makes if you (for instance) hit some incorrect combination of keys. I've tried to fix this in preferences, but I don't see any item that controls this. Any ideas would be greatly appreciated, as this is a waste of time to have to cancel out of the unwanted new compose message, and confirm that, indeed, I want to cancel and not save it.
    Thanks!
    2006 G5   Mac OS X (10.4.9)  

    Is Outbox visible in the mailbox list? If so, get rid of any stray messages that may be there.

  • Sending mail issues from personal account with bt router

    Please can anyone help? I have a personal email address which mails fine from my ipad and iphone but since changing to a BT router it won't mail from my macbook pro despite the other devices working fine!
    BT won't help and say they don't support 3rd party emails which I never knew - now I'm stuck with them for 18 mnths!
    Is it a firewall issue on the Macbook pro? I had a friend try to set up Thunderbird on my macbook pro with the personal address and again it received mails fine but wouldn't send - just gives the same error message saying it couldn't connect to the SMTP server...
    Please does anyone have any suggestions as I can now received and read work based messages on my macbook pro but have to respond from ipad or iphone :-(
    Thank you for any advice anyone can offer...

    I have experienced the same problems. I could receive but not send email through a third party email. Our ISP is BT and it would appear even though they wont admit it that they have changed some peoples settings.
    I spoke with my email provider 123-reg and they asked me to check my ISP and then check the SPAMHAUS and our ISP has been Blocklisted. I called BT and they wouldnt answer why this had happened.
    To cut a long story short I have had to pay BT £30 (not happy) to resolve the problem. They set my SMTP details as mail.btinternet.com and i had to authenticate this by logging into a BT/Yahoo email account that we never use., go to options then mail options then mail accounts and add details for the account your having problems with. You should then receive an email link on your third party email address.
    I have actually complained to OFCOM about this as I dont believe that I should have to pay to rectify a problem that I havent caused. All BT would say is that they fixed the problem and I have to pay the £30. they wouldnt answer why I couldnt send emails prior to this fix. I asked why I now have to have the SMTP as mail.btinternet.com and again they couldnt answer this.
    I hope this helps

  • Jabber for Windows client Voice Mail issue

    hi, cisco guys
        i have a collaboration test for my customer in resent days.
        the follow picture is the topo of my test system
       1.  cucm1 use ICT non-GK trunk to connected with cucm2 and the ip phones with dn 56xx registered on cm1
        the iphones and jabber clients with dn 54xx registered on cm2
       2. cm2 intergrated with Unity Connection server and  Cups server
           the version of cm1 and cm2 and unity connection is 8.6.2-21900
          the version of cups is 8.6.4
      3.  the issue occurrenced when the ip phone user 5412 call to 5411 but no answered, user 5412 sent a
          voice mail to user 5411,only MVI of the ip phone 9951 with dn 5411 turned on but jabber client wihtout any prompt message
          but when the user 5665 which  registered on cm1 called user 5411 and sent a voice mail , status in normal,
          mvi turned on , the jabber client also can  recived the prompt message and the the vocie mail could be played on the jabber client
          what's the issue  probably be caused by & how can i solve it
          need your help!!!!

    I don't know if you have a specific subnets permitted in the CUPS ACL
    This is dangerous and incorrect guidence. The Incoming ACL allows the addresses defined to bypass authentication. In other words, I could impersonate your CEO if I wanted to. There are only two common use cases where doing this is appropriate: 1) the CUxAC server IP; or 2) older versions of CCX where CAD didn't support DIGEST authentication.
    As for the original question: your English is difficult to understand. Is the following problem statement accurate?
    When 5412 on CM2 leaves a voicemail for 5411 on CM2, the MWI is lit for 5411 but Jabber does not reflect the waiting message?
    If this is accurate, is the message also shown in the Web Inbox? https:///inbox
    The serverIP should be the CUC server defined in the voicemail profile on CUPS for the user who owns 5411.
    Please remember to rate helpful responses and identify helpful or correct answers.

  • Yet another cant send mail issue

    Hi, I am going nuts here!! At home I have Comcast and my dotmac account works via port 25 no set up, perfect. I am now in another house with comcast and I cannot send anything. I telnetted port 25, nothing shows, so I contacted Comcast and they sent me this url http://www.comcast.net/help/faq/index.jsp?faq=EmailMail_(Mac)17798 it seems to have ALL the answers, but I am just going round in circles.
    Assume I want to set up for traveling purposes. I set up a new account POP, used dotmac info for incoming mail/server info and for outgoing server I have smtp.comcast.net, I use the 465 port with ssl, and for the password authentication I use my dotmac name and password.
    In advanced I use 995 port and ssl.
    This info seems good to go, but when I try to send I always get the dialog box The SMTP server “smtp.comcast.net” rejected the password for user “dotmac account”.
    I just cant work out why it wont accept the password. Should I have some extra comcast info?
    this is madness, but oh well, is there an answer out there

    Checking Comcast's website, Comcast's SMTP server settings should be as follows:
    SMTP Server: smtp.comcast.net
    Server Port: 587
    Use SSL: Off or not selected.
    Authentication: Password
    User Name: The portion of your Comcast email address in front of the @ sign only.
    Password: Your Comcast account password - the same password used to check the incoming mail server for new messages.
    .Mac's SMTP server settings should be as follows:
    SMTP Server: smtp.mac.com
    Server Port: 587
    Use SSL: On/Selected but isn't required.
    Authentication: Password
    User Name: The portion of your .Mac email address in front of the @ sign only.
    Password: Your .Mac account password - the same password used to check the incoming mail server for new messages.
    These settings will not guarantee being able to send messages with either account and SMTP server when traveling and not connected to the internet with Comcast. This is determined by the ISP being used to connect to the internet since all ISPs have restrictions on using an SMTP server that is outside of their network or not provided by the ISP.
    You can use .Mac's authenticated SMTP server to send messages with your .Mac account only but you can use Comcast's authenticated SMTP server to send messages with your .Mac account when connected to the internet with Comcast.

  • I cannot open my windows live e-mail anymore from firefoxbrowser

    My e-mail page comes up with everything on it, but nothing will respond that I click on. I can't open mail or delete or anything else.
    Every other site I go to on firefox Is working. This just started yesterday. Today I upgraded to the new upgrade hoping that would solve my problem, but it didnot. I can still get my mail on internet exployer.

    Your relative should have removed his account by doing a reset of the phone before giving it to you. His account will still be the primary account linked to the phone and whilst you can add and delete other accounts you can't delete the primary account exceptby a reset and then set the phone up of new.

  • Changed e-mail password in windows live account - now cannot send email from iphone.  Have deleted the account from the iphone and reinstalled it - the password is correct - still no luck - any advice ?

    I changed the password in my windows live e-mail account.  My iphone now recieves but will no longer send e-mails.  I have deleted the account from the iPhone - reinstalled it and verified the password is correct.  I recieve a message that "Cannot Send Mail"  "the user name or password ... is incorrect.  Any advice ?

    Hello DRB1962
    Check to make sure that you validated the device within your account on webmail.
    iOS: Setting up Hotmail, Outlook, Live, or MSN email accounts
    http://support.apple.com/kb/HT1694
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

Maybe you are looking for