I have problems sending mail in Yahoo

when I tried to send an email in yahoo, after I hit the send button, kept loading the page for five minutes and did not send.
== URL of affected sites ==
http://www.yahoo.com

On the off chance anyone is watching the thread ...
I seem to have resolved the issue of sending a photo to my wife through messages by turning off iMessage, then rebooting (not resetting) the phone.
I still have the issue in Photos. If I select the share icon, then select message, it brings up a message authoring window with the photo in it, but never offers an opportunity to select a contact to send it to.

Similar Messages

  • Have problems sending mail from a secure wireless connection. but ok from starbucks

    I have several clients here at my marina all using different email providers and they all seem to have problems sending out mail from my secure wireless. They can recieve mail no problem. Now here is where it get weird. I added my gmail account to one of the problem iphones and same thing was happening, when i go to send out an email from my account on their phone it gets stuck trying to send mail. I compaired server setting on my phone to his and everything was that same, even turned off his server from fairpoint(the email he uses) and kept my gmail one and still couldnt send mail from his phone but worked fine on mine. Apple set up this individuals iphone/ipad so it make me think they did something when he had the accounts added. Any thoughts?

    look here for gmail accounts
    http://support.apple.com/kb/TS3058

  • Problem sending mail from Yahoo acct via iPhone

    Hello all,
    Everything on my iPhone works great. I discovered how to set up Yahoo and it receives mail just fine, but when I compose a message or reply nothing seems to happen, the message just disappears. The message does not show up in my "Sent Items". I also have a Gmail account and everything is fine there. Does anybody have any ideas? Thank you.

    I am having a similar problem with my email account. I set up the profile and receive emails fine on the iPhone but can't send emails. I get message "cannot send mail" check account settings for server. looks rights
    Anyone solve this problem???

  • Having problem sending mail to yahoo using a yahoo id(SendMailException)

    Hi, I read almost all the post's related to javamail,but none of them seems to help me, and hence the reason for this post,
    i've written a simple application(with reference to the one implemented on sun's site) that sends a message to a yahoo id using a yahoo id,
    meaning
    [email protected](recepient) and [email protected](sender)
    the code is given below:
    import javax.mail.*;
    import javax.mail.internet.*;
    import java.util.*;
    import javax.mail.Authenticator;
    public class MailSender
         String host = "smtp.mail.yahoo.com";
         String from = "[email protected]";
         String to = "[email protected]";
         public void sendMessage()
              try
                   Properties props = System.getProperties();
                   props.put("mail.smtp.host", host);
                   props.put("mail.smtp.auth","true");
                   Authenticator auth = new MyAuthenticator();
                   Session session = Session.getInstance(props,auth);
                   session.setDebug(true);
                   MimeMessage message = new MimeMessage(session);
                   message.setFrom(new InternetAddress(from));
                   message.addRecipient(Message.RecipientType.TO,new InternetAddress(to));
                   message.setSubject("Hello JavaMail");
                   message.setText("Welcome to JavaMail");
                   message.saveChanges(); // implicit with send()
                   Transport.send(message);
              catch(Exception e)
                   System.out.println("Sorry could not complete your Request, you have an error "+ e);
                   e.printStackTrace();
         public static void main(String args[])     
              MailSender ms= new MailSender();
              ms.sendMessage();
         private class MyAuthenticator extends Authenticator
         public PasswordAuthentication getPasswordAuthentication() {
              return new PasswordAuthentication("someoneelse","password");
    It compiles but when i execute it i get a nested exception
    nested exception is:
    javax.mail.AuthenticationFailedException
    javax.mail.SendFailedException: Sending failed;
    nested exception is:
    javax.mail.AuthenticationFailedException
    at javax.mail.Transport.send0(Transport.java:218)
    at javax.mail.Transport.send(Transport.java:80)
    at MailSender.sendMessage(MailSender.java:32)
    at MailSender.main(MailSender.java:45)
    Does anyone know a solution to this problem?

    Sure, you can put a local mail server on ur machine to test out sending and receiving in javamail. There r several mail server implementations out there, I personally prefer James (available at http://apache.org) It is pure java based mail server providing full POP3 and SMTP functionality.
    Once u configure a local mail server, u can use emailids like xyz@localhost or acme@localhost

  • My iPad has intermittent problems sending mail.

    Can you help. May iPad seems to have problems sending mails. I'm receiving them fine, but they are not going

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    Setting up and troubleshooting Mail
    http://www.apple.com/support/ipad/assistant/mail/
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Try this first - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    Or this - Delete the account in Mail and then set it up again. Settings->Mail, Contacts, Calendars -> Accounts   Tap on the Account, then on the red button that says Remove Account.
     Cheers, Tom

  • Urgent!!!! Problem in sending mail through yahoo mail server

    Hi
    I have a yahoo account and I want to send email through yahoo mail server
    using my java program. My program supports SMTP server authentication.
    But when I connect to the yahoo mail server(smtp.mail.yahoo.com) I got this error
    javax.mail.MessagingException: 521 yahoo.com closing transmission channel. You
    must be pop-authenticated before you can use this smtp server, and you must use
    your yahoo mail address for the Sender/From field.
    This is my program
    import javax.mail.*;
    import java.util.*;
    import javax.mail.internet.*;
    import javax.mail.event.*;
    import java.io.*;
    public class JavaMailUserAgent
         Properties properties;
         Session session;
         Message message;
         JavaMailUserAgent(String mailHost,String smtpUsername,String smtpPassword) throws Exception
              properties=new Properties();
              properties.put("mail.smtp.host",mailHost);
              ServerAuthenticate auth=new ServerAuthenticate(smtpUsername,smtpPassword);
              session=Session.getInstance(properties,auth);
              message=new MimeMessage(session);
         } //**********************************************************************end constructor
         void sendMail(String messageFrom,String messageTo,String subject,String messageBody) throws Exception
              properties.put("mail.from",messageFrom);
              InternetAddress[] address={ new InternetAddress(messageTo) };
              message.setFrom(new InternetAddress(messageFrom));
              message.setRecipients(Message.RecipientType.TO,address);
              message.setSubject(subject);
              message.setContent(messageBody,"text/plain");
              Transport transport=session.getTransport(address[0]);
              transport.addConnectionListener(new ConnectionHandler());
              transport.addTransportListener(new TransportHandler());
              transport.connect();
              transport.sendMessage(message,address);
         } //*************************************************************************end function
    } //*************************************************************************************end main
    class ConnectionHandler extends ConnectionAdapter
         public void opened(ConnectionEvent e)
              System.out.println("connection opened");
         public void disconnected(ConnectionEvent e)
              System.out.println("connection disconnected");
         public void closed(ConnectionEvent e)
              System.out.println("connection closed");
    } //*************************************************************************************end main
    class TransportHandler extends TransportAdapter
         public void messageDelivered(TransportAdapter e)
              System.out.println("message delivered");
         public void messageNotDelivered(TransportAdapter e)
              System.out.println("message NOT delivered");
         public void messagePartiallyDelivered(TransportAdapter e)
              System.out.println("message partially delivered");
    } //*************************************************************************************end main
    class ServerAuthenticate extends Authenticator
         String smtpUsername = null;
         String smtpPassword = null;
         public ServerAuthenticate(String username, String password)
              smtpUsername = username;
              smtpPassword = password;
         protected PasswordAuthentication getPasswordAuthentication()
              return new PasswordAuthentication(smtpUsername,smtpPassword);
    } //*************************************************************************************end main
    I use this code to call the program.
    JavaMailUserAgent jmail=new JavaMailUserAgent("smtp.mail.yahoo.com","my_yahoo_username","my_yahoo_password");
    jmail.sendMail("[email protected]","[email protected]","test subject","test message");
    Could you pls tell me why do I get this error eventhough My program has server authentication.
    Is this my program error.Please Helpl me what to do to correct this problem.
    Please include a sample code
    thanks for listening
    sabu

    I have used the code below to send mail from yahoo account,but I got the error message like below,what I should configure in pop3 of yahoo account????
    import javax.mail.*;
    import java.util.*;
    import javax.mail.internet.*;
    import javax.mail.event.*;
    import java.io.*;
    public class JavaMailUserAgent
    Properties properties;
    Session session;
    Message message;
    JavaMailUserAgent(String mailHost,String smtpUsername,String smtpPassword) throws Exception
    properties=new Properties();
    properties.put("mail.smtp.host",mailHost);
    ServerAuthenticate auth=new ServerAuthenticate(smtpUsername,smtpPassword);
    session=Session.getInstance(properties,auth);
    message=new MimeMessage(session);
    //**********************************************************************end constructor
    void sendMail(String messageFrom,String messageTo,String subject,String messageBody) throws Exception
    properties.put("mail.from",messageFrom);
    InternetAddress[] address={ new InternetAddress(messageTo) };
    message.setFrom(new InternetAddress(messageFrom));
    message.setRecipients(Message.RecipientType.TO,address);
    message.setSubject(subject);
    message.setContent(messageBody,"text/plain");
    Transport transport=session.getTransport(address[0]);
    transport.addConnectionListener(new ConnectionHandler());
    transport.addTransportListener(new TransportHandler());
    transport.connect();
    transport.sendMessage(message,address);
    } //*************************************************************************end function
    } //*************************************************************************************end main
    class ConnectionHandler extends ConnectionAdapter
    public void opened(ConnectionEvent e)
    System.out.println("connection opened");
    public void disconnected(ConnectionEvent e)
    System.out.println("connection disconnected");
    public void closed(ConnectionEvent e)
    System.out.println("connection closed");
    } //*************************************************************************************end main
    class TransportHandler extends TransportAdapter
    public void messageDelivered(TransportAdapter e)
    System.out.println("message delivered");
    public void messageNotDelivered(TransportAdapter e)
    System.out.println("message NOT delivered");
    public void messagePartiallyDelivered(TransportAdapter e)
    System.out.println("message partially delivered");
    } //*************************************************************************************end main
    class ServerAuthenticate extends Authenticator
    String smtpUsername = null;
    String smtpPassword = null;
    public ServerAuthenticate(String username, String password)
    smtpUsername = username;
    smtpPassword = password;
    protected PasswordAuthentication getPasswordAuthentication()
    return new PasswordAuthentication(smtpUsername,smtpPassword);
    public static void main(String str[])throws Exception
    JavaMailUserAgent jmail=new
    JavaMailUserAgent("smtp.mail.yahoo.com","[email protected]","passwordd");
    jmail.sendMail("[email protected]","[email protected]","test subject","test message");
    ERROR:
    E:\mail\javamail\servlet>java ServerAuthenticate
    connection opened
    Exception in thread "main" javax.mail.MessagingException: 530 authentication req
    uired - for help go to http://help.yahoo.com/help/us/mail/pop/pop-11.html
    at com.sun.mail.smtp.SMTPTransport.issueCommand(SMTPTransport.java:879)
    at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTransport.java:599)
    at com.sun.mail.smtp.SMTPTransport.sendMessage(Compiled Code)
    at JavaMailUserAgent.sendMail(JavaMailUserAgent.java:58)
    at ServerAuthenticate.main(JavaMailUserAgent.java:131)
    How Could I rectyfy the above error ?????
    Regards,
    Mahesh.

  • TS3276 Anyone experiencing problems sending mail using TalkTalk - can receive but not send  - was ok up until pm 24/08/12 - have recently loaded Mountain Lion patch could this be the problem?

    Anyone experiencing problems sending mail using Apple Mail viaTalkTalk - can receive but not send  - was ok up until pm 24/08/12 - have recently loaded Mountain Lion patch could this be the problem?

    jag157 wrote:
    "I managed to solve the problem. Under smtp settings (mail preferences/accounts/edit smtp) I set the outgoing port to 25 (as recommended by Talktalk), no authentication (set to none) and unchecked SSL. I found that until I set the port to 25 and authentication to none I was unable to uncheck SSL. One I had done this I was able to send from my main email and other email adddresses set up under my account."
    Superb advice R&W!  My email sending block using TalkTalk started 2 months ago using Snow Leopard, continued when I upgraded to 10.8.2, and has been persistent on my wife's new iPad (IOS 6.1).  Implementing your wise words has fixed all that, and now enables me to call her on FaceTime — previously only she could call me.  Thank you so much; this will save hours of further fruitless searching and phoning.
    Please remember that your email is now insecure, if you wish to have a secure connection SSL must be on and port 25 should be avoided.

  • I have problems sending e-mail from my iPhone.  I can receive OK.

    I have problems sending e-mail from my iPhone.  I can receive OK.  The e-mail gets put in the outbox, but never goes out.

    Did you set it up following this:
    http://portal.activehost.com/knowledgebase.php?action=displayarticle&id=4744

  • I have a problem sending mail via smtp. I use a satellite system and the average return time for a ping is 675ms. Is this a problem with mail? If so can I change Mail to accept it. The problem also exists with Lion

    I have a problem sending mail via smtp. I use a satellite system and the average return time for a ping is 675ms. Is this a problem with mail? If so can I change Mail to accept it. The problem also exists with Lion and on both my MacPro and my wife's Imac. I also see my mailboxes randomly disconnecting and reconnecting. Any other ideas of a possible cause?

    I solved it myself, after the "note" which came back from FF/Mozilla just as I finished my message, commenting on what it was that my system had , I wnnt back to check my plug-ins etc. I downloaded the latest Java, BOTH 32bit AND 64 bit versions and latest Firefox.
    Now all is working.
    Thanks,
    B.

  • Problems Sending Mail -- ISP or Mac Mail?

    Typically, I need to send nearly every message at least twice -- once initially and however many times after that from the outbox until it finally goes. At times, I'll have mail stuck in my outbox for hours, if not days and often have to use webmail to send messages in a pinch (thus losing all the benefits of Mail).
    I contacted my ISP and spoke to a technician who was very helpful and attentive. I sent him screengrabs of all of my settings and he confirmed they are set correctly. However, he dismissed my belief that this is related to the ISP and said that it is probably something to do with my Mac Mail client, or my home network configuration. He suggested I switch to Entourage or another mail client, which I don't want to do.
    Either way, I'm skeptical about his response because prior to using this ISP I never had the problem with Yahoo using more or less the same configuration. (Both require authentication, POP3, etc.) Yahoo always accepted outgoing messages on the first try.
    Has anyone else seen this problem and can they share advice on what they did to fix it, or is the ISP blowing smoke up my skirt?

    I am also having problems sending mail. This has occurred for the past 6 weeks or so. Typically, I receive the drop down message about my ISP server: "Cannot send message using the server smtp.telus.net.....". I click the "try again later" button, open the Outgoing Mail box on Mail, click on the unsent email and it usually makes it out. This has become an annoying 4-step mail process.
    I contacted my ISP and they did their little tests and said that it all of my settings are fine (I wasn't surprised; I haven't changed anything) and said that I should contact my Mail client, Apple.
    I encounter the same problem regardless of who or how I send the mail...if I send to an address on the same ISP server, to mac.com, to yahoo, to private website accounts, etc. I've tried sending through mac.com, through my website account, etc. Nothing changes.
    From the many posts about this problem, it seems to be widespread.
    And sometimes, just sometimes, Mail sends my mail just like it did in the "good old" days, on the first click or keyboard shortcut.
    Has anyone found a workable solution to this annoying problem?
    I miss my Comm/Shift/D

  • Has anyone an Intermittent Problem sending mail from Mac OS X (10.6.8)?

    I have a Mac mini operating on Mac OS X(10.6.8) Snow Leopard. In the last couple of weeks I have been having intermittent problems sending mail from Mac MAIL, especially if I hit the reply button.  It whirls around for ever and then tells me to 'Try Later' or 'Try Again'.  When I shut down my computer and open up mail again, I hear the mail whizzing off.  I have just tried it now and it went in the time that it has taken me to compose this email. But sometimes the mail doesn't go at all. Could it me because I have too many messages in my inbox and sent boxes (around 1000 in each)?  I read somewhere that you should delete Mail in library/pref/com.apple.mail.plst and reinstal it.  But I'm frightened to do this in case I can't re-instal it as I don't know how to.

    I have a Mac mini operating on Mac OS X(10.6.8) Snow Leopard. In the last couple of weeks I have been having intermittent problems sending mail from Mac MAIL, especially if I hit the reply button.  It whirls around for ever and then tells me to 'Try Later' or 'Try Again'.  When I shut down my computer and open up mail again, I hear the mail whizzing off.  I have just tried it now and it went in the time that it has taken me to compose this email. But sometimes the mail doesn't go at all. Could it me because I have too many messages in my inbox and sent boxes (around 1000 in each)?  I read somewhere that you should delete Mail in library/pref/com.apple.mail.plst and reinstal it.  But I'm frightened to do this in case I can't re-instal it as I don't know how to.

  • Problem sending mail from iPhone

    Hello
    I have a problem sending mails from a Horde account in iPhone 5S. I guess the problem is about configuring the outgoing mail server, but I tried several things and nothing seams to work. The message I get is :
    "Can't send mail. No password provided for account x
    Please go to Mail account settings and enter a password"
    Here goes the detailed configuration of the SMTP:
    SMTP server: mail.account.pt
    User name and Password: xxxxxx
    SSL: OFF
    Authentication: Password
    Server port:587
    What am I doing wrong?
    Thank you for your help!
    Best regards,
    Pedro

    After talking with my e-mail service provider I understood some more configurations, which might help you to help me:
    SMTP Settings:
    Authentication method: encrypted password
    Connection Security: STARTTLS
    How can I copy these settings into my iPhone 5S? In Authetication there's only the following options:
    Password, MD5 challenge-response, HTTP MD5 Digest and NTLM...
    Thank you!
    Best regards,
    Pedro Santos

  • Problem sending mail over GPRS/EDGE

    problem sending mail over GPRS/EDGE
    i am in thailand right now with my iPhone 3G 16 GB (italian, no SIM-lock, 2.2). my problem: the iPhone does not send emails via GPRS/EDGE of local AIS mobile provider (there is no 3G in thailand right now). each time i try, i will get a prompt saying 'cannot send mail, the connection to the outgoing server "mail.gmx.net" failed'.
    in germany, i use a contract SIM from o2, in thailand a prepaid SIM from AIS. i have configured 2 german pop mail accounts on my phone (gmx.de, o2online.de). receiving and sending email work fine on WLAN (everywhere, also here in thailand) and in germany on 3G/EDGE/GPRS. internet works everywhere, too. so, configuration seems to be okay. for each account, i use the same (smtp) sending server for all networks (ie i do not change configurations, using mail.gmx.net and pop.o2online.de). for a test, i changed smtp server to the AIS proprietary server mail.cscoms.com, but no change in behaviour.
    so, any ideas how i can get my iPhone to not only receive but also send emails via GPRS of AIS?
    thank you!

    ok. i found the solution.
    The problem is not in the iphone, the problem was DNS resolution in the server side.

  • I am not able to send mails through Yahoo APP.It gives me an error msg :"the sender address has ben rejected by the server ".I tried adding username and password in the SMTP server settings,But those optiopns are greyed out.

    I am not able to send mails through Yahoo APP. It gives me an error msg :"the sender address has ben rejected by the server ".
    I tried adding username and password in the SMTP server settings,But those optiopns are greyed out.
    So, i am not able to enter anything in fields under SMTP server settings

    You probably have changing settings disabled in Restrictions.

  • Problems sending mail

    Hi folks, I am having problems sending mail. I have tried both Entourage and mail, and get the same problem that I can´t connect to the outgoing smtp server. I haven´t changed any settings... This just suddenly started happening. I can send mail with the exact same settings on another computer on my network here, so the server is in working order.
    Any help would be hugely appreciated.

    This issue should be brought to the attention of your ISP or whomever maintains your email server.

Maybe you are looking for

  • Cannot open port through Airport Extreme to access security system DVR

    I have internet access through Bellsouth DSL -- modem only. We had a security system set up around a DVR recording images and connected to the internet through a Linksys router. We would use a client on outside computers to connect to the security sy

  • Production Support for Multiple BI roll-outs

    Hello BI Experts, This might be more of an administrative question, but I will need inputs from Developer's perspective. We are having 2 implemenation projects going on at the moment. They are sharing same ECC 6.0 & BI 7.0 landscape. But as the 2 pro

  • Color issue only with finder on a dell U2410 screen

    Hello... I've got a macbookpro 15' with snow leopard. I've just connected a second display screen (DELL U2410) through a mini display to DVI adapter. On te Dell, when i look a photo in the finder/cover flow, the reds are satured. And when i look the

  • SQL join clauses in JSP

    We want to make an edit in which users will be able to write SQL queries and show them the result in a table. The problem is that, when doing joins, the fields with the same name in both database tables are misinterpreted, for example: if we have x.n

  • Formula using a between statement

    I have a two part question... First, I need to calculate the number of years based between two dates.  Currently the formula states DateA - Date B / 365.  Which doesn't give me the exact years b/c the 365 does not accommodate the extra days during le