I can't send gmail anymore from my mail application in MacBookPro

Can anyone help in resolving inability to send out mails in Mail using gmail. Outgoing server shown as disconnected. I have tried many fixes, nothing work. I do not want to erase my this mail box because I do not want to lose all my history and classification of mails
Thanks

If you've activated 2-step verification, you need to generate an application-specific password in your Google account and enter it instead of the login password you use on the website.

Similar Messages

  • Can't send talktalk emails from apple mail.

    My talk talk inbox on the apple mail programme is stubbornly empty and I can't send emails from it. My aol account works fine. It's a POP setting account I think and the incoming port number is correct at 110. Don't know how to check the outgoing port which I gather should be 587. How can I repopulate my inbox and send emails from the laptop again? I can from my phone and iPad.

    No, there have been no problems here. Run Connection Doctor, and tell us what it reports, particularly about the SMTP?
    Ernie

  • I am using a iPhone 5 but now I don't see the send button anymore in the mail application

    Can any one tell me how to have the send,reply and delete buttens back on the bottom of the screen.   It appears also that when I hit the change button in the list of mails, I only can put a red mark before the mail but don't have a possibility to delete the mails I marked.   The only way to delete a mail is to slide gently up the mail then a button appears to delete it.

    close out of the mail app, then double tap the home button find the mail app hold down and close out of it.
    Then go back into the mail app and see if those features came back.
    If it doesn't do the above step again and then power off your phone and then back on.

  • HT3529 After update my iPad (four generation) to iOS 6.1.3 I can't send picture anymore from iMessage.

    Sending text or links works fine but pictures are not send it. I try to different people and doesn't work. Before update to iOS 6.1.3 every thing was ok.

    Looks like it is affecting a number of people. It is the 6.1.3 update!
    Hopefully someone from apple can jump on this forum and tell us when a fix will be issued.
    I am currently in another country away from my fiancée, and not being able to send pictures with wedding ideas is frustrating.
    I have done multiple tests, and can't get this to work over 3G or Wi-Fi.
    Come on Apple, can someone please comment??
    I am using an iPhone 5 (16GB) CDMA on Verizon.

  • Can I set up gmail from my "mail" application?

    I have wireless and I use airport etc to get the internet in my building. I am trying to set up gmail with POP and every time I do I cannot receive any emails although I can send emails out from my mail application with gmail-any ideas as to why I cannot receive emails would be appreciated... or can I ask an apple technician about this problem?

    Did you follow the directions given at Gmail on how to set-up?
    Let us know the setting from preferences/accounts so we can see if anything is incorrect. Frequently it is needing to have the server port changed. Mine is at 587, and all is working fine. Feel free to hide the info you prefer not to share, an example "username"@gmail.com.

  • Can i send email directly from bridge cs6 and cc ?

    hi
    can i send emails directly from bridge cs6 or cc directly from bridge?
    i found this scripts http://kb2.adobe.com/community/publishing/894/cpsid_89450.html
    but i run cs6 and cc under windows 7 sp1 64bit and windows 8.1 64bit
    and i have thunderbird email client
    is there a way to make it work?
    maybe i can install another email client
    thanks

    // consult MAILSEND in here: https://github.com/muquit/mailsend and download the app 'mailsend.exe' for windows7 in here:
    // https://github.com/muquit/mailsend/releases/download/1.17b15/mailsend1.17b15.exe.zip
    // unzip it and put the app .exe where you want to use it.
    // I have tested using Bridge to send e-mail using my gmail e-mail account and it works. I only needed to 
    // I needed to send e-mails from Bridge using my google account, but first I needed to put on my network the app 'mailsend.exe'(i'm using PCs windows7 , CS6 and a network)
    // All my 20 people team is using it, so I decided to put the app 'mailsend.exe' on a common place on network. I you are using it only on 1 PC you don't need you can put it on its disk.
    // Solution: All you need is to create a bat file that tells 'mailsend.exe' what to do:
    var mailsendBat=File(Folder.temp +"/mailsendBat.bat"); // creates a bat file on the temporary folder
    mailsendBat.open("w")
    // the place where app 'mailsend.exe' file is
    mailsendBat.writeln('"X:\\[someFolder]\\mailsend.exe" \^');
    // my gmail
    mailsendBat.writeln('-t [email protected] -f [email protected] \^');
    // the title can have encoding or not (-enc-type "base64")
    mailsendBat.writeln('-cs "utf-8" -mime-type "text/plain" -enc-type "base64" -sub "Ich lerne seit ungefähr zwei Jahren Deutsch" \^');
    // this works for the smtp gmail
    mailsendBat.writeln('-starttls -port 587 -auth -smtp smtp.gmail.com -user "[email protected]" -pass "[myPassword]" \^');
    // If I want to send an image attachment I use this 1, 2, or more times. If content-type is "multipart/mixed" the inline images don't work. Instead the images will be sent as attachment.
    mailsendBat.writeln('-content-type "multipart/mixed" -attach "C:\\Users\\Public\\imagens\\myImage.jpg" \^');
    // this is the line to send a simple text line with no encoding specified
    mailsendBat.writeln('-enc-type "none" -mime-type "text/plain" -M "one line attachment 1" \^');
    // you can sen inline html that can also have links to inline images
    mailsendBat.writeln('-mime-type "text/html" -enc-type "none" -M "<b>this is a test</b><br><img src="http://[any_online_image.jpg],image/jpeg,i">" \^');
    // sending text line with special encoding
    mailsendBat.writeln('-cs "utf-8" -mime-type "text/plain" -enc-type "base64" -M "Ich lerne seit ungefähr zwei Jahren Deutsch" \^');
    // endind it
    mailsendBat.close();
    // executing
    mailsendBat.execute();
    // there are also other kind of commands (consult https://github.com/muquit/mailsend)

  • How can I send a message from database to a J2EE application?

    How can I send a message from database to a J2EE application?
    If I have a codetable in database that has new or modified values I have to refresh the codetable in my J2EE application.
    Most effective way would be send a message to initiate a table reload from J2EE app, but I don't know how to do this.
    Now I have a background thread that regular reads the table and looks for changes.

    http://www.oracle.com/technology/products/integration/bam/10.1.3/TechNotes/TechNote_BAM_AQ_Configuration.pdf
    This document details how to create triggers on a table that send out JMS messages.
    In this example, the messages are going to Oracle BAM.. your message could go to your J2EE application listening to its own topic/queue.
    an alternative idea.
    you could also just cache your lookup table with something like Oracle Coherence and than try to ensure that all changes to the lookup go through Coherence, so that you won't need to do notification from the db up to the application. the application and the lookup data management tool would be using the data grid for management of the lookup table data, and the data grid (coherence) would persist the lookup data changes back to the db.

  • HT2736 How can I send a playlist from my library to my friend?

    How can I send a playlist from my Library to my friends phone.  She uses itunes on her phone. I thought that itunes used to do that, I remember it being somewhere on the program. Now when I would like to do it I can't find it.

    First get iTunes on your PC. Then plug your iPod in and go to the music, yo. You Cannot sync playlist if you select to sync your entire library. But you can sync playlists of you choose to sync selected songs.
    You can also create a playlist on your iPod just by holding the center button on a song and select add to "on the go". This " on the go" is a playlist and will be transfers to your PC if you plug your iPod in again.

  • How can i send multiple sms from my iphone 4

    how can i send multiple sms from my i phone 4

    Turn Group Messaging (instructions in lin that follows) off and send the message to multiple recipients. The result may be dependent on your carrier. If manually keying in numbers rather than using contacts, use the return key after each number. http://support.apple.com/kb/HT5760

  • How can I send an email from Sharepoint Online using sandbox solution?

    How can I send an email from Sharepoint Online using sandbox solution?
    If possible I do not want to use workflow.
    Is It possible to do it without using workflow?

    hello Steven Andrews,
    when any user sends a message using contact us page in SharePoint online.
    1. We are inserting item in Contact Us List . - This is working fine
    for anonymous users also. We have used Office365 anonymous codeplex wsp and it is working fine. Anonymous user is able to insert new record in the Contact Us List.
    2. Once, new record is inserted in Contact Us list, we want to fire email notifying thanks to the user on his email id as well as to our company x person for notification of new inquiry. 
    We tried using Workflow having impersonation step for  anonymous user but it is not working for Anonymous users. Workflow is able to sent the email if someone logged into system but not working for Anonymous user although workflow is getting started
    but not able to send email although used Imperonsation step.
    We are stuck into implementing second step.

  • Can i send a fax from a hp ts 520?

    can i send a fax from a hp ts 520?

    Bft, welcome to the forum.
    Which of these models is yours?
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Can I send a text from my ipad to a droid?

    Can I send a text from my ipad to a droid?

    IF YOU ONLY HAVE WIFI: you can download a texting app (which gives you your own #) and then YES, you can text anyone's cell phone or device as long as they have a phone # as well.
    IF YOU HAVE 3G (INTERNET EVERYWHERE) OR A TEXTING PLAN: YES you can, if you have 3G, then follow the instructions for wifi
    if you have 3g, then you should be able to enter the messaging application on your iPad and send a message to anyone with a valid phone #!
    I hope I was able to help you converse with whoever you are trying to converse with...
    Maniac

  • Can we send .csv file from sap srm system to sap pi?

    Hi Experts,
    we have 3 options send the data from sap systems to sap pi.i. e.proxy,idoc and rfc only
    How can we send .csv file from sap srm to sap pi?
    Regards,
    Anjan

    Anjan
    As you know SAP SRM and SAP PI are different boxes.
    *_Option 1:_*
    we need a shared AL11 directory in between SAP SRM and SAP PI (Ask basis to setup shared folder). Place / Populate the file in the folder from SAP SRM and then it can be picked through sender file communication channel.
    In this case you (Basis team) will share one folder which is visible from the AL11 transaction of both the systems (SRM and PI). You will drop .csv file using some report or program from SRM at this location and from PI you can read that file using File communication channel (NFS mode).
    Option 2:
    Setup a FTP at SRM environment and expose some folder which can be accessible from PI. Use sender file communication channel at PI end to pick the file.
    You can use this option incase sharing of folder is not possible (due to network / other constrains). Here FTP server is required to expose any folder as FTP so as it can be accessible from internet (remote location). You need to expose some folder at SRM machine.  You will drop .csv file using some report or program from SRM at this location. Now PI can fetch the file from that location using  sender file communication channel (FTP Mode) providing user credentials.
    Hope it clears now.
    Regards
    Raj

  • Can i send my music from mac to iphone without connect my iphone with usb ?

    can i send my music from mac to my iphone without connect my iphone with usb ?

    iOS: How to transfer or sync content to your computer - http://support.apple.com/kb/HT1296 > Wi-Fi syncing
    How to Use Wireless Sync in iOS 5 - http://www.pcworld.com/article/242242/how_to_use_wireless_sync_in_ios_5.html
    iTunes 10.5 and later: Troubleshooting iTunes Wi-Fi Syncing - http://support.apple.com/kb/TS4062

  • How can i send the data from WD to SMARTFROMS to fill it?

    Hi All,
    how can i send the data from WD to SMARTFROMS to fill it?
    Best Regards

    Hello
    After conferring with a colleague, the following response may help:
    The Smart Form doesn't have any special integration in WebDynpro.
    Therefore the application should implement it especially.
    Steps:
    1) Call of Smart Forms in mode GET_OTF
    2) Convert OTF to PDF
         3) Show the PDF in WD Context Node
    Similar topic was discussed here:
    Re: Displaying Smartforms in Webdynpro ABAP
    Thanks
    Kind Regards
    Toros Aledjian
    Edited by: Toros Aledjian on Nov 29, 2010 8:43 AM

Maybe you are looking for

  • Can't open iMovie 6.0.3 (or iDVD)

    I'd appreciate any help I can get - I've looked at all the threads that come up during a search without much luck I'm trying to use iMovie 6.0.3 that came with my 4 month old MacBook Intel Core 2 Duo, and it crashes every time I try to start up a pro

  • 2nd gen ipod not recognized in windows xp or itunes

    I have been working on this for 2 weeks. I have loaded the latest usb drivers/chipsets. Have followed every suggestion on apple website. Obviously lots of people have this problem. When my shuffle is plugged in the computer sees it as new hardware an

  • Digitizing **** - FCP 4.0 and a DVCPRO 50 deck/external FW 800 drive

    In digitizing ****. Working on documentary project shot 720x480p @24fps. DVCPRO 50, coming in through the deck's firewire. Then to external 500gig drive, firewire 800. Everything worked fine, digitzed 10 tapes. Then someone added another firewire dri

  • I pod touch for gps sygic

    I purchased a software Sygic down loaded from APL*APPLE ITUNES STORE . The Sygic doesn't work on my Ipod touch (no GPS signal) .What will I do. Please give me a advice. Thanks

  • Create materialized view

    can i create a materialized view with joins, group by and aggregate all these things on a single materialized view if yes then how ?? please use scott schema or hr as i am new to oracle thks and regards