N97 sending mail through hotmail account

hi, ive read several thread regarding emails on n97 but nothing that would answer my question so i hope someone can help me out.
im having a trouble sending emails through my hotmail acount. i have no problem logging on to my account and receiving emails and reading them but when i click on "new message" to create one it come up as "there was an error while trying to do this. Please try again"
every time i take the phone into get it serviced outbox mail will work for a while but in a few hours dies again. ive got the phone changes few days ago so i dont think its the phone... maybe the programming...
ive called Nokia support centre and they told me i have to start a nokia messaging account (which i did) but the places im sending emails to blocks any emails unless its coming straight from my hotmail account.
any advice??

Try this, it will create a mailbox in messaging and work like your desktop, to refresh you need to hi-lite the mailbox then select options-sync email, use it on my N97 instaed of standard email
http://forum.dailymobile.se/index.php?action=dlattach;topic=426.0;attach=43906
Just download to pc drag and drop to phone and install !
If I have helped at all, a click on the White Star is always appreciated :
you can also help others by marking 'accept as solution' 

Similar Messages

  • HT1694 Can't send emails through Hotmail account

    This just started.  I can receive emails, but can't send emails through Hotmail account. iPhone says I need to check my settings (password).  I have correct password in settings.  Any help?

    Hello reedstrom,
    Sorry to hear you are not able to send emails from your Hotmail account.  Sending emails is a very important feature of the iPhone, and the fourth section in the following tutorial has steps for checking your Outgoing Mail Server settings. 
    Setting up Mail
    http://www.apple.com/support/iphone/assistant/mail/#section_4
    I hope this helps!
    Best,
    Sheila M.

  • Cannot send mail through Hotmail on iPad

    Cannot send mail through Hotmail on iPad, it's ok through bigpond though. I have tried deleting account and shutdowns x 2 but still nothing.
    The message which appears is telling me the user name or password "SMTP:           @[email protected]" is incorrect.
    Thanks, Ron

    Yahoo's been having persistently random issues for months. You can try just waiting it out, or delete and readd your yahoo account. When my accounts were affected I just used webmail to access my yahoo accounts until it cleared up.
    Chances are it's all on their end and really all you can do is wait it out.

  • Brand new macbook pro can't send mail through verizon account

    Hi,
    I just bought a 13 inch macbook pro, 750 gb hard drive I7 processor. I can receive mail, but can't send it through my verizon account. My mobile me account works fine. Everything looks right but it just won't send. Any ideas?
    thanks,
    Joe

    I had the same problem since last Thursday.  I have tried and re-tried all of the settings suggested by the support posts but I can not get email to go out of me Outbox.

  • Can't send mail through business account

    Hi. I'm using Mail to consolidate various email accounts, and have been having trouble making one of them work.
    The connection doctor says it's online and the hosting company for the website says I have the right settings, but it just seems to keep giving me this error message:
    And then I have to send it through a different account, which is all sorts of frustrating, as well as debilitating to the business image.
    the smtp outgoing setting I was told to use is mail.pepcrealfood.co.uk, which the doctor says is online, as I said. And now I'm being advised to talk to my service provider about it. Any help available out there?

    I had the same problem since last Thursday.  I have tried and re-tried all of the settings suggested by the support posts but I can not get email to go out of me Outbox.

  • Error Occurred while sending mail through gmail account

    Hello,
    I am writing 1 demo appln which will send a mail from my gmail account. It will show error like "javax.mail.MessagingException: 530 5.5.1 Authentication Required f77sm3109311pyh"
    Here is Code : -
    package demo;
    import java.util.Properties;
    import javax.mail.Address;
    import javax.mail.Authenticator;
    import javax.mail.Message;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeMessage;
    public class Demo {
         * @param args
         public static void main(String[] args) {
              try
              Properties properties=System.getProperties();
              properties.put("mail.smtp.host","smtp.gmail.com");
              properties.put("mail.smtp.auth","true");
              properties.put("mail.from","[email protected]");
              properties.put("mail.smtp.port","465");
              properties.put("mail.smtp.starttls.enable","true");          
              properties.put("mail.smtp.socketFactory.port", "465");
              properties.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
              properties.put("mail.smtp.socketFactory.fallback", "false");
              Authenticator auth = new PopupAuthenticator();
              Session session = Session.getDefaultInstance(properties,auth);                    
              session.setDebug(true);     
    //          Define message
              MimeMessage message = new MimeMessage(session);
              message.addRecipient(Message.RecipientType.TO, new InternetAddress("[email protected]"));
              message.setSubject("Hello JavaMail");
              message.setText("Welcome to JavaMail");          
              message.saveChanges();
              Address address[] = message.getAllRecipients();
              Address a1 = address[0];
              System.out.println("Recipient : "+a1.toString());          
              Transport.send(message, message.getAllRecipients());
              catch(Exception e){e.printStackTrace();}
    and code for PopupAuthenticator :-
    package demo;
    import javax.mail.Authenticator;
    import javax.mail.PasswordAuthentication;
    import javax.swing.*;
    import java.util.StringTokenizer;
    public class PopupAuthenticator extends Authenticator
         public PopupAuthenticator()
              System.out.println("In Auth");
    public PasswordAuthentication getPasswordAuthentication()
    String username, password;
    String result = JOptionPane.showInputDialog("Enter 'username,password'");
    StringTokenizer st = new StringTokenizer(result, ",");
    username = st.nextToken();
    password = st.nextToken();
    return new PasswordAuthentication(username, password);
    But when i run this code i never get popup window asking for username/password and it throws follwing exception
    javax.mail.SendFailedException: Sending failed;
    nested exception is:
         javax.mail.MessagingException: 530 5.5.1 Authentication Required f77sm3109311pyh
         at javax.mail.Transport.send0(Transport.java:204)
         at javax.mail.Transport.send(Transport.java:88)
         at demo.Demo.main(Demo.java:66)
    may i know wats wrong wid my code? I am confussed about when getPasswordAuthentication () method will call?
    please reply me at [email protected]
    thnx in advance ..
    -Sushrut

    Hi bshannon ,
    Thnx ..
    I have removed the popup code from my PopUpAuthanticer.java file
    But i got similar error ....
    Here is Debug message : -
    In Auth
    Recipient : [email protected]
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
    DEBUG: SMTPTransport trying to connect to host "smtp.gmail.com", port 465
    DEBUG SMTP RCVD: 220 mx.google.com ESMTP y78sm4251719pyg
    DEBUG SMTP SENT: helo sushrutr
    DEBUG SMTP RCVD: 250 mx.google.com at your service
    DEBUG: SMTPTransport connected to host "smtp.gmail.com", port: 465
    DEBUG SMTP SENT: mail from: <[email protected]>
    DEBUG SMTP RCVD: 530 5.5.1 Authentication Required y78sm4251719pyg
    DEBUG SMTP SENT: quit
    javax.mail.SendFailedException: Sending failed;
    nested exception is:
         javax.mail.MessagingException: 530 5.5.1 Authentication Required y78sm4251719pyg
         at javax.mail.Transport.send0(Transport.java:204)
         at javax.mail.Transport.send(Transport.java:88)
         at demo.Demo.main(Demo.java:53)
    can u please tell me when getPasswordAuthentication() will call ? and who is going to call this ...
    Thnx in advance ...

  • Having problems SENDING mail through hostway account (relay error msg)?

    Want to spare others the 2 week nightmare of configuring email so that "relay error" message would not prevent emails from being sent.
    Settings / Accounts/ mail/ then...
    1. enter pop/smtp account and pw
    2 SMPT settings: "authentication" - check "password"
                               SSL - "OFF' if port setting is 587
                                         "ON" if port setting is 465
    3. Enter both user name and password where it says "optional"
    Good luck!

    Try this, it will create a mailbox in messaging and work like your desktop, to refresh you need to hi-lite the mailbox then select options-sync email, use it on my N97 instaed of standard email
    http://forum.dailymobile.se/index.php?action=dlattach;topic=426.0;attach=43906
    Just download to pc drag and drop to phone and install !
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • TS3276 I am unable to access mail on icloud or send mail through the icloud account.  How can I get mail routed through the icloud account.

    I am unable to access mail on icloud or send mail through the icloud

    Here is how to set up your iCloud email account:
    http://www.apple.com/support/macosx/mailassistant/

  • While sending an e-mail fr hotmail account, in few secs, msg recd - Widows Live hotmail is not ready to accept yr request. It is not with Safari. hv downloaded latest version of Silverlight, dont kn to get to it on hotmail page. am using mac.

    While sending an e-mail from hotmail account, in a few seconds a message is received - Widows Live hotmail does not ready to accept your request. This is not the case on Safari.
    It requires me to download the latest version of Silverlight, which is done, yet I do not know how to get to it on my hotmail page. I am using mac.

    Just to recap, this is a collection of ports I have collected over time for people who needed this information when setting up the HP ePrint app so that they could view their email from within the app.  I am certain other applications also need this information.  Although lengthy, I could not find a more comprehensive place to retrieve this information.  Feel free to post additional information, faulty information, or other related topics below as this is simply a collection of data and it would be practically impossible to test all of them. Thank you!
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!

  • Using OS Mavericks can't send mail on hotmail?

    I can't send mail on hotmail using os x mavericks, why?

    I also was having the SMTP (offline) issue for Gmail and Comcast after upgrading to Maverick but not immediately.   I read through all the posts.  I was not seeing a common thread for a solution so I decided to bite the bullet and call Apple(if it costs, it costs).  I set up a call back.  They called me in 15 minutes, set up a view of my screen and proceeded to troubleshoot.  He started by going to "Window" "connection doctor".  Observed the red dots and descriptions as being a username/password issue.  Then went to "mail","Preference", account icon and entered the gmail 2-step verification password generated by Gmail and before clicking done (on the Gmail website),clicked on the "SMTP Mail server" box and chose "edit SMTP server list". In the window that appeared also entered the same Gmail generated password there as well.  We then tested by going to the "Connection Doctor" getting green dots for both incoming and outgoing Gmail entries.  Next test was sending email to myself.  It worked.  We did the corresponding procedure for the Comcast account.  It took 25 minutes and cost nothing.  I was surprised at the price since my iMac is 4 years old.  I hope this lasts and I don't get really good at this procedure.

  • Cannot send mail to hotmail by webmail.

    Out Mail server cannot send mail to hotmail by webmail(Sun Java System Messenger Express),but I can send mail to hotmail by microsoft outlook express.
    I want to know why ?
    Thanks!
    (1) # ./imsimta version
    Sun Java(tm) System Messaging Server 6.1 HotFix 0.11 (built Jan 28 2005)
    libimta.so 6.1 HotFix 0.11 (built 16:16:35, Jan 28 2005)
    SunOS jt-dns2 5.9 Generic_118558-08 sun4u sparc SUNW,Sun-Fire-280R
    (2) mail.log_current by webmail:
    11-Jan-2008 16:02:01.02 tcp_intranet tcp_local E 1 [email protected]
    rfc822;[email protected] [email protected] lanps.com.cn ([127.0.0.1])
    11-Jan-2008 16:02:03.01 tcp_local process E 1
    rfc822;[email protected] [email protected] tcp-
    daemon.mail1.lanps.com.cn
    11-Jan-2008 16:02:03.01 tcp_local D 1 [email protected]
    rfc822;[email protected] [email protected] mx1.hotmail.com dns;mx1.hotmail.com
    (TCP|10.200.15.70|57281|65.54.245.8|25) smtp;250 [email protected]
    11-Jan-2008 16:02:03.40 process ims-ms E 4
    rfc822;[email protected] admin@ims-ms-daemon process-
    daemon.mail1.lanps.com.cn
    11-Jan-2008 16:02:03.40 process D 4
    rfc822;[email protected] [email protected]
    11-Jan-2008 16:02:03.60 ims-ms D 4
    rfc822;[email protected] admin@ims-ms-daemon
    (3) mail.log_current by outlook express:
    11-Jan-2008 15:59:18.31 tcp_auth tcp_local EA 2 [email protected]
    rfc822;[email protected] [email protected] CIT-BS1 ([10.0.33.58])
    11-Jan-2008 15:59:18.46 tcp_local J 0 [email protected]
    rfc822; [email protected] CIT-BS1 ([10.0.33.58]) 550 5.7.1 Relaying not allowed:
    [email protected]
    11-Jan-2008 15:59:19.83 tcp_local D 2 [email protected]
    rfc822;[email protected] [email protected] mx4.hotmail.com dns;mx4.hotmail.com
    (TCP|10.200.15.70|57277|65.54.244.104|25) smtp;250 [email protected]
    Edited by: summer_ on Jan 11, 2008 12:36 AM
    Edited by: summer_ on Jan 11, 2008 12:37 AM
    (4) # ./configutil -o service.http.smtphost
    # ./configutil -o service.http.smtphost
    Edited by: summer_ on Jan 11, 2008 12:39 AM
    Edited by: summer_ on Jan 11, 2008 12:51 AM

    summer_ wrote:
    We have a F5 Link Controller to test ,so I built a new SUN ONE test system.If this is a new installation then the problem could be anywhere, your installation/configuration and even this "F5 Link Controller" (whatever that is).
    There are no error message to "[email protected]"
    Well according to your logs an email message was delivered to the admin account.
    hotmail did not get the mail.Log a support case (assuming you have a support contract). There is simply too many possible causes of your problem and the logs you provided contradict everything else you have said.
    Regards,
    Shane.

  • Sending mail through "local" mail server?

    I've set up fetchmail and procmail to download (and delete) mail from my mail host to a ~/Maildir on a server in my home which I then access through dovecot IMAP.
    I want to be able to send mail "through" my server too, instead of going straight to my host's smtp. Maybe there isn't any good reason to do this?  I want my Sent mail to be stored on my local server. And if set up more than one mail account, it would have to use the right smtp depending on the email address.
    Anyone know how they would go about it? I found a handful of dovecot/fetchmail articles, but none that mention sending mail really. There's an oldish looking wiki article on exim, but I feel like I shouldn't need to use system wide conf for this.

    Dovecot and fetchmail only handle the mail coming to you (ie, IMAP/POP3). You need SMTP to send email.
    I highly recommend Postfix, and set it up to use your ISP's mail server as relay_host

  • I have an iphone 4s. able to receive all the incoming mails but not able to send mails through this iphone 4s. please help.

    I have an iphone 4s. able to receive all the incoming mails but not able to send mails through this iphone 4s. please help.

    delete and reinstall the email account.

  • 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

  • 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.

Maybe you are looking for

  • How can I do link forgot user id when login to portal.

    In portal when login user can click logon help if he forgot his password. forgot password link in portal logon page | SCN But what if user forgot his user id? How can I do link in whitch on users id mail send his user id.

  • P45D3 Platinum video problem

    Hi all. I've recently bought a P45D3 Platimum with ATI HD3870 PCI-E & 2Go of Corsair XMS3-CMS1333C9-9-9-24. I enconter problem with an aleatory blank screen at windows XP open session or when i restart windows. Windows seems to be start normally, but

  • Edirectory settings for SMG authenticaion

    Hi, We have installed Symantec Messaging Gateway v10. In order to receive Daily Qurantine report of Spam message for users, we must configure AD integration. We want to configure the directory integration with our Novell Groupwise server but somehow

  • Can't find update software on my ipad 2 please help

    I am trying to update my OS on the ipad 2 and under setting>General> there is no software update.  Please help.

  • Error code 4261: HELP ME - I have to get CD's

    I just got my son (12yearsold) an IPod and we order several songs. We are going on a roadtrip and need to have CDs for the car. Everytime I try to burn a disk I get the 4261 error code. I am using HP CD-R 52X disks (they have worked in the past) and