Cant reply email using gmail

I am using gmail for my email.
Have no problems replying emails in the past.
2 days ago, notice that I cant reply email when using gmail via firefox.
It show "loading" and does not take me to the reply screen.
Does not have this problem when using IE.

Try this:
I actually have no idea if this will work or not.
Go to Settings>>Mail and the account. Change the outgoing information to the account you want to send from.
Worth a shot.

Similar Messages

  • After upgrade iPhoto will not email using Gmail.  Message " Your email did not go through because the server did not reply."

    After upgrading on both computers at work and at home, iPhoto will no longer email using Gmail (or for that matter any email program I can find).  I've tried the fixes of deleting all accounts in iPhoto and re-entering.   Still doesn't work.  Any other ideas?

    Hi Scooter,
    I'm reposting my response to a similar question here.
    Try this, assuming you're using iPhoto 11 and Mountain Lion:
    Within the iPhoto application, click on iPhoto in the menu bar
    Click on Preferences
    Within Preferences, click on Accounts
    Your Gmail account should be present. Click on Gmail under Accounts.
    Put in the proper information. Your full gmail address is your username (put this under Email address). Outgoing Mail Server is smtp.gmail.com   Port is 465   Password is your password.    Use Secure Sockets Layer (SSL) should be checked.
    Upon making these changes, click on the red "close" button in the top left corner of the pop-up window. Choose to Save Changes.
    Close iPhoto.
    Reopen iPhoto. You should now be able to share photos.
    I hope this helps. One suggestion for you, by the way. It's always best to include the application version and the operating system version you're using when asking for help. The above solution will not apply, at least exactly, to anything other than iPhoto 11 and Mountain Lion.
    Cheers,
    Jeff

  • Reply to email using gmail help

    So I have gmail setup on iPhone. 1.1.3 iPhone. In my account setup on Gmail using the computer to setup, I've added my personal email address (a pop account) as the reply to address for gmail. And set Gmail to get my personal email address email. All that works fine on the computer.
    On the iPhone, which only has the gmail account on it, when I send email from the iPhone is there anyway to have this email I send to people to ALSO have my personal email address as the reply address?
    As it is now the email sent from iPhone is replied to my gmail email. I want the reply email to be my personal.
    When I send email via gmail on the computer, this works correctly. But not the iPhone
    Thanks

    Try this:
    I actually have no idea if this will work or not.
    Go to Settings>>Mail and the account. Change the outgoing information to the account you want to send from.
    Worth a shot.

  • Failure to send email using gmail server

    I am using gmail account and I use thunderbird to download all the emails and to compose my emails. Now I'm trying to write a java application that will send out emails. Since I'm still in school I am using gmail account for the class project.
    One t hing I noticed is that in my thunderbird I use secure connection using TLS. How should I incorporate that here in the java code. Is that why I'm getting the exception. Anyone knows any other smtp server using which I could submit my assignment.
    Here is my code:
    package com.imagework.email;
    import java.util.Properties;
    import javax.mail.Authenticator;
    import javax.mail.Message;
    import javax.mail.MessagingException;
    import javax.mail.PasswordAuthentication;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeMessage;
    public class SendMailUsingAuthentication {
         private static final String SMTP_HOST_NAME = "smpt.gmail.com";
         private static final String SMTP_PORT = "587";     
         private static final String SMTP_AUTH_USER = "[email protected]";
         private static final String SMTP_AUTH_PWD = "abcde";
         private static final String emailMsgTxt = "email message text";
         private static final String emailSubjectTxt = "email subject";
         private static final String emailFromAddress = "[email protected]";
         // Add List of Email address to who email needs to be sent to separated by comma
         private static final String[] emailList = { "[email protected]" };
         public static void main(String args[]) throws Exception {
              SendMailUsingAuthentication smtpMailSender = new SendMailUsingAuthentication();
              smtpMailSender.postMail(emailList, emailSubjectTxt, emailMsgTxt,
                        emailFromAddress);
              System.out.println("Sucessfully Sent mail to All Users");
         public void postMail(String recipients[], String subject, String message,
                   String from) throws MessagingException {
              boolean debug = true;
              Properties props = new Properties();
              props.put("mail.smtp.host", SMTP_HOST_NAME);
              props.put("mail.smtp.auth", "true");
              props.put("mail.debug", "true");
              props.put("mail.smtp.user", SMTP_AUTH_USER);
              props.put("mail.smtp.password", SMTP_AUTH_PWD);          
              props.put("mail.smtp.port", SMTP_PORT );
              Authenticator auth = new SMTPAuthenticator();
              Session session = Session.getDefaultInstance(props, auth);
              session.setDebug(debug);
              Message msg = new MimeMessage(session);
              InternetAddress addressFrom = new InternetAddress(from);
              msg.setFrom(addressFrom);
              InternetAddress[] addressTo = new InternetAddress[recipients.length];
              for (int i = 0; i < recipients.length; i++) {
                   addressTo[i] = new InternetAddress(recipients);
              msg.setRecipients(Message.RecipientType.TO, addressTo);
              // Setting the Subject and Content Type
              msg.setSubject(subject);
              msg.setContent(message, "text/plain");
    //          Transport trans = session.getTransport();
    //          trans.connect(SMTP_HOST_NAME, SMTP_PORT , SMTP_AUTH_USER, SMTP_AUTH_PWD);
    //          trans.send(msg);
              Transport.send(msg);
         * SimpleAuthenticator is used to do simple authentication when the SMTP
         * server requires it.
         private class SMTPAuthenticator extends javax.mail.Authenticator {
              public PasswordAuthentication getPasswordAuthentication() {
                   String username = SMTP_AUTH_USER;
                   String password = SMTP_AUTH_PWD;
                   return new PasswordAuthentication(username, password);
    The error I get is given in detail:
    DEBUG: JavaMail version 1.3.1
    DEBUG: java.io.FileNotFoundException: C:\Program Files\Java\j2re1.4.2_06\lib\javamail.providers (The system cannot find the file specified)
    DEBUG: !anyLoaded
    DEBUG: not loading resource: /META-INF/javamail.providers
    DEBUG: successfully loaded resource: /META-INF/javamail.default.providers
    DEBUG: Tables of loaded providers
    DEBUG: Providers Listed By Class Name: {com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun Microsystems, Inc]}
    DEBUG: Providers Listed By Protocol: {imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun Microsystems, Inc], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]}
    DEBUG: successfully loaded resource: /META-INF/javamail.default.address.map
    DEBUG: !anyLoaded
    DEBUG: not loading resource: /META-INF/javamail.address.map
    DEBUG: java.io.FileNotFoundException: C:\Program Files\Java\j2re1.4.2_06\lib\javamail.address.map (The system cannot find the file specified)
    DEBUG: setDebug: JavaMail version 1.3.1
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
    DEBUG SMTP: useEhlo true, useAuth true
    DEBUG SMTP: useEhlo true, useAuth true
    DEBUG SMTP: trying to connect to host "smpt.gmail.com", port 587
    javax.mail.SendFailedException: Sending failed;
      nested exception is:
         class javax.mail.MessagingException: Unknown SMTP host: smpt.gmail.com;
      nested exception is:
         java.net.UnknownHostException: smpt.gmail.com
         at javax.mail.Transport.send0(Transport.java:218)
         at javax.mail.Transport.send(Transport.java:80)
         at com.imagework.email.SendMailUsingAuthentication.postMail(SendMailUsingAuthentication.java:70)
         at com.imagework.email.SendMailUsingAuthentication.main(SendMailUsingAuthentication.java:29)
    Exception in thread "main" All suggestions are welcome!
    - Roger

    Here is working code. I followed the instructions here, which, though it
    does not even mention SMTP, still works with SMTP:
    http://www.javaworld.com/javatips/jw-javatip115.html
    Look for the xxxxx occurances and substiture with your credentials :
    * Created on Feb 21, 2005
    import java.security.Security;
    import java.util.Properties;
    import javax.mail.Message;
    import javax.mail.MessagingException;
    import javax.mail.PasswordAuthentication;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeMessage;
    public class GoogleTest {
        private static final String SMTP_HOST_NAME = "smtp.gmail.com";
        private static final String SMTP_PORT = "465";
        private static final String emailMsgTxt = "Test Message Contents";
        private static final String emailSubjectTxt = "A test from gmail";
        private static final String emailFromAddress = "[email protected]";
        private static final String SSL_FACTORY = "javax.net.ssl.SSLSocketFactory";
        private static final String[] sendTo = { "[email protected]"};
        public static void main(String args[]) throws Exception {
            Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
            new GoogleTest().sendSSLMessage(sendTo, emailSubjectTxt,
                    emailMsgTxt, emailFromAddress);
            System.out.println("Sucessfully Sent mail to All Users");
        public void sendSSLMessage(String recipients[], String subject,
                String message, String from) throws MessagingException {
            boolean debug = true;
            Properties props = new Properties();
            props.put("mail.smtp.host", SMTP_HOST_NAME);
            props.put("mail.smtp.auth", "true");
            props.put("mail.debug", "true");
            props.put("mail.smtp.port", SMTP_PORT);
            props.put("mail.smtp.socketFactory.port", SMTP_PORT);
            props.put("mail.smtp.socketFactory.class", SSL_FACTORY);
            props.put("mail.smtp.socketFactory.fallback", "false");
            Session session = Session.getDefaultInstance(props,
                    new javax.mail.Authenticator() {
                        protected PasswordAuthentication getPasswordAuthentication() {
                            return new PasswordAuthentication("xxxxxx", "xxxxxx");
            session.setDebug(debug);
            Message msg = new MimeMessage(session);
            InternetAddress addressFrom = new InternetAddress(from);
            msg.setFrom(addressFrom);
            InternetAddress[] addressTo = new InternetAddress[recipients.length];
            for (int i = 0; i < recipients.length; i++) {
                addressTo[i] = new InternetAddress(recipients);
    msg.setRecipients(Message.RecipientType.TO, addressTo);
    // Setting the Subject and Content Type
    msg.setSubject(subject);
    msg.setContent(message, "text/plain");
    Transport.send(msg);
    [i]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Color imageCLASS MF9220Cdn scan to Email using GMAIL as business apps

    We use Google apps for nonprofits and all of our email is handled by gmail. 
    What settings do we use on the MF9220Cdn to send scans by email?
    I have set the SMTP server, username & password. How can I turn on SSL?
    Any help?

    I have a Color imageCLASS MF8580CDW on a wifi network (no ethernet or USB connected), behind a home router (Verizon). I use it with Airprint on my iPhones and two Macs.
    Here's what I use in System Management Settings:
    Network Settings
       TCP/IP Settings
       Port Number Settings
       SMTP: 587
    E-Mail Settings
      SMTP Server Address: smtp.gmail.com
      E-Mail Address: <<myusername>>@gmail.com
      Authentication/Encryption Settings
      Use POP Authentication Before Sending: Off
      Use SMTP Authentication: On
      User Name: <<myusername>>@gmail.com
      Password: Set.
      Use SSL: On
      Confirm Certificate for SMTP Sending: Off
    It took me a while to get this, and like the reply you got, Canon was no help at all when I asked them via email.  Good luck!

  • Cannot send email using Gmail after iOS 5

    Since updating to iOS 5, I cannot send email from my Gmail account on my iPhone. I receive email fine, but when trying to send I get the error:
    Cannot Send Mail
    Check the settings for the outgoing servers in Settings > Mail, Contacts, Calendars
    I have erased my Gmail account and re-set it up numerous times, and restarted my phone in between doing so. The wizard works perfectly fine, my password is accepted, and like I mentioned email comes in perfectly. I do not have this problem sending mail from iCloud on the same phone.
    One thing I did do is attempt setting Gmail up as an Exchange account so that I could use push, but it killed my battery so I erased it. This might have been when the problem began but I'm not positive.

    I'm not sure what exactly I did that finally fixed it, but I erased my iCloud and Gmail accounts, restarted the phone, and added Gmail first. But I removed Gmail so many times who knows what actually did it.

  • Cant send emails using Mozilla Thunderbird

    Hi I have just moved back to BT from TalkTalk I was originaly with Pipex and I have a @homecall.co.uk email address , I can still receive emails from this address which I would like to keep but I cant send on this address . I have changed the outgoing SMTP to mail.btinternet.com but still cant send . I then changed all settings to BTinternet but then could not send OR receive .
    Can anyone tell me how to change the settings so that I still use the homecall.co.uk email AND the new btinternet.com addresses.

    choughed wrote:
    Hi I have just moved back to BT from TalkTalk I was originaly with Pipex and I have a @homecall.co.uk email address , I can still receive emails from this address which I would like to keep but I cant send on this address . I have changed the outgoing SMTP to mail.btinternet.com but still cant send . I then changed all settings to BTinternet but then could not send OR receive .
    Can anyone tell me how to change the settings so that I still use the homecall.co.uk email AND the new btinternet.com addresses.
    Hi, welcome to the forums.
    Are you getting any error messages, if so are they 553 ones ?
    As well as the link from Keith, have a look at my shortcuts (link below) option 0e.
    http://www.andyweb.co.uk/shortcuts
    http://www.andyweb.co.uk/pictures

  • Cant send emails from gmail or yahoo when connected to vpn

    I use a vpn to mask my IP address. When I am connected through my VPN I cannot send emails from my gmail or yahoo accounts through thunderbird
    If i disconect vpn they go through fine

    Just a guess, but if you change the outgoing server name to an IP address such as 74.125.136.108 for Gmail, does it work?
    https://support.hidemyass.com/entries/24893686-SMTP-Sending-emails-while-connected-to-VPN#thunderbird

  • Scan to email using gmail as SMTP

    I have an HP Office Jet Pro 8600 N911g printer.  I have this currently setup with the scan to network folder working great.  I would like to set the scan to email.  As the corporate office uses exchange I have to use another service for SMTP.  I setup a Gmail account and puched in the appropriate settings, but the unit fails to connect to gmail.  I've tried multiple ports without success, I've also tried setting up the email server settings, again trying multiple ports without success.  I've tried using every combination using SSL and SMTP authentication, but nothing seems to connect.
    Does gmail actually work, I've seen some say yes, others say no.  Is there another service that would work outside my corporate network or do I need to setup an internal email server, just so I can scan to emails?
    This question was solved.
    View Solution.

    Hi,
    Try following the exact steps below and check if that may help:
    Click the network setting on the printer and locate its IP Address.
    Type that IP  from the browser on your PC to access its EWS page.
    Click the Scan tab.
    Under Scan to E-mail click Outgoing Email Profiles.
    Click New.
    Type your email address and any selected Display name, then click Next.
    Note: be sure to take a note of the specific Display Name.
    Fill the mail settings as following:
    - smtp.gmail.com
    - 465
    - Check the box next to SSL
    - Check the box next to the SMTP Authentication option
    - Type your full gmail address as teh user name and type the gmail password.
    Click Next and dontinue following the steps till teh Summary, then click Save and Test.
    If the Test fails for any connectivity issue continmue following the steps below:
    Click the Network tab.
    Under the active connection type section click IPv4 (Wired / Wireless).
    Keep the IP Address Configuration as exists, under the DNS Address Configuration check the box next to Manual DNS Server.
    Set the Preferred DNS as 8.8.8.8
    Set the Alternate DNS as 8.8.4.4
    Click the Scan tab and click on Outgoing Email Profiles again.
    Click the Test button next to the Display Name configured earlier and check foir any difference.
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Cant receive email using outlook 2007

    Hello,
    I downloaded outlook 2007 and its not working correctly.
    I am able to send out emails, but I cant receive anything back.
    I have the latest outlook connector (
    [Oracle Connector for Outlook 10.1.3.0.8|http://mydesktop.oraclecorp.com/pls/gds_obi/GDS_OBI_ADMIN.DYN_P2P_JAVA_APP.show?p_arg_names=v_sof_lan_id&p_arg_values=2978]
    Any ideas why its acting this way.
    Thanks in advanced,
    AJ

    Hmm as far as I remember this is not the last version of the connector out there, please check on metalink, I'm currently runing a .9 version (and I'm only using outlook for testing purpose, so I could also be outdated !)

  • Cannot send email using gmail account

    Within the last month or so, sending mail from my gmail id in Thunderbird fails. Receiving works fine. I'm running windows 7 on a desktop.
    Status says - 'connected to smtp.gmail.com...'
    Error message is - 'Sending of message failed. The message could not be sent because the connection to SMTP server smtp.gmail.com timed out. Try again or contact your network administrator.'
    Server settings are:
    Server type - pop mail server
    Server name - smtp.gmail.com
    port - 995
    connection security - ssl/tls
    authentication method - normal password
    outgoing server settings - for my id - I have smtp.gmail.com

    Not sure why you have port 995. That is the Inbound port for POP email server. Last time I checked the SMTP ports are 587 or 465.

  • Problems Setting Up University Email (uses Gmail) in Mail

    I have a student email account that runs through gmail, but it doesn't actually say gmail in the email address anywhere. I think this might be the reason why when I try to set up that account in Mail (tried both POP and IMAP) it's not accepting my login information. Is there a way to make this work?

    Not an exact solution for you, but our University has a computer store on campus that was all kinds of help when setting up University email to operate through Mail, remotely.
    Give the IT Help desk or (if one exists) the store a try.

  • TS3276 Why mail sends multiple copies ( 20) of an email using gmail?

    I have this strange problem that the mail app sends multiple copies of an email (some times more than 20) to a recepient usnig my gmail account? any help is appreciated.

    Information.
    Gmail and Mail – How to
    Gmail and Mail – How to (2)
    You also might try looking at/posting here.
    Gmail Support

  • I am unable to delete or move emails (using gmail)

    All of the sudden I am unable to delete emails or move them to folders-tried all the ways:  delete button; mouse; message delete and message move to folder-nothing is working

    I just noticed that if I delete or move them in Mail on my iPhone, then and only then does it update properly (ie registers the changes) on Mail in my MacBook Pro.
    Is it a setting thing I've not done properly (ie my MacBook has no authority to change anything on the Cloud or something)?

  • Can't read email using my primary apple email account

    Ok, I'm new to this forum but here is my problem
    Usually I can read Email using my primary Apple E-mail account BEFORE I updated my Ipad into IOS 8.
    After I updated my Ipad into IOS 8 (non-jailbreak and from IOS 5 jailbreak), My Ipad says that I need to sign up an Icloud email to use the Mail App.
    Then I can't use my Primary Apple Account as an E-mail anymore. When people send a mail to my primary apple account, I cant read it because I cant read emails using my Primary Apple Account anymore.
    When I signed in with my primary apple Email account and opened my Mail App, It used my Icloud email instead my primary apple email.
    I tried everything Include making an email aliases but my primary apple email uses @Yahoo.com and I can only use aliases of @Icloud.com
    Can someone please help me so I can read E-mails when people send an Email to my primary apple account? Because I need to see those subcription mails and change my password of my online game account(<- This one is URGENT).
    And sorry for my bad English because I'm Indonesian.

    Welcome to discussions,
    go to settings/mail, contacts.../your mail account/outgoing mail server settings/ and see if you put in the needed password to access your mail server.
    Also check out this help article about your issue for more tips: http://support.apple.com/kb/TS2770

Maybe you are looking for

  • Won't shutdown or restart unless hard boot - SMCFanControl Application

    I have quite a bit of installed hardware so I thought SMCFanControl would be a good idea. However, it seems that I can reproduce a problem I'm having when utilizing the SMC app. Problem: 1. Won't shutdown or restart unless a power boot is performed 2

  • How can I scan with HP 5600 all in one?

    Hi! I have an HP 5600 all in one. I recently switched to an iMac Leopard. The printer driver does not have any scanning support. Is there any other driver available to get this support? Or will I have to get a compatible printer to be able to use sca

  • Tomcat always generates charset in Content-Type http header !!!

    Dear All! I need urgent help with a problem I met with and any suggestion are very appreciated! The problem is: We are using Tomcat as a web server (and JSP engine), and we would like to use a user control written in C# 2.0 on one of our pages. I've

  • Accessing Session objects

    I have the following managed bean in my faces-config <managed-bean> <managed-bean-name>SessionScope</managed-bean-name> <managed-bean-class>com.web.object.SessionScope</managed-bean-class> <managed-bean-scope>session</managed-bean-scope> </managed-be

  • Upgrade error CS5 Design standard

    Hi there. I'm Chris from the Netherlands. While trying updating my CS5 Design Standard Suite I'm recieving next error: Adobe Player for Embedding 3.1 Installation failed. Error Code: U44M1P7 Adobe Illustrator CS5 15.0.2 Update Installation failed. Er