Send email script works on Win, but not on AndoridSending email in .NET through GmailHow to validate an email address in JavaScript?How to validate an email address using a regular expression?What is the maximum length of a valid email address?Send email using the GMail SMTP server from a PHP pageSend Email IntentCan not send mail using smtp.gmail.com, port 587 from vbs scriptsending email from localhost works but fails when run on remote linux serverHow to include Internet Permission in Kivy? (Android 6)Sending mail (via java) works in eclipse but not on linux server

Construct a word ladder

The usage of "run a mile" in a sentence

What to keep in mind when telling an aunt how wrong her actions are, without creating further family conflict?

High resistance, no current. What's the point of a potential then?

USPS Back Room - Trespassing?

Should breaking down something like a door be adjudicated as an attempt to beat its AC and HP, or as an ability check against a set DC?

Imitating a conveyor belt in `TikZ`

How to deal with a colleague who is being aggressive?

Find the names of these countries

Boss wants me to falsify a report. How should I document this unethical demand?

Did 20% of US soldiers in Vietnam use heroin, 95% of whom quit afterwards?

Why were helmets and other body armour not commonplace in the 1800s?

I unknowingly submitted plagarised work

What was the idiom for something that we take without a doubt?

Using credit/debit card details vs swiping a card in a payment (credit card) terminal

What are these arcade games in Ghostbusters 1984?

How to respond to an upset student?

Why does this if-statement combining assignment and an equality check return true?

Count Even Digits In Number

Can I tell a prospective employee that everyone in the team is leaving?

Is Jon Snow the last of his House?

Which European Languages are not Indo-European?

Employer asking for online access to bank account - Is this a scam?

Are these reasonable traits for someone with autism?



Send email script works on Win, but not on Andorid


Sending email in .NET through GmailHow to validate an email address in JavaScript?How to validate an email address using a regular expression?What is the maximum length of a valid email address?Send email using the GMail SMTP server from a PHP pageSend Email IntentCan not send mail using smtp.gmail.com, port 587 from vbs scriptsending email from localhost works but fails when run on remote linux serverHow to include Internet Permission in Kivy? (Android 6)Sending mail (via java) works in eclipse but not on linux server






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















This script sends mail when is ran on Windows and Linux, but not on Andorid. What is the issue?



My app requirements in p-4-a are python3, kivy, openssl. Permission is INTERNET. App crashes when I run method below.



def send_report(self):
server = smtplib.SMTP("smtp.gmail.com", 587)
server.ehlo()
server.starttls()
server.ehlo()
server.login('sender_email', 'sender_pass')
server.sendmail('sender_email', 'receiver_email', 'Some msg')
server.close()









share|improve this question






























    1















    This script sends mail when is ran on Windows and Linux, but not on Andorid. What is the issue?



    My app requirements in p-4-a are python3, kivy, openssl. Permission is INTERNET. App crashes when I run method below.



    def send_report(self):
    server = smtplib.SMTP("smtp.gmail.com", 587)
    server.ehlo()
    server.starttls()
    server.ehlo()
    server.login('sender_email', 'sender_pass')
    server.sendmail('sender_email', 'receiver_email', 'Some msg')
    server.close()









    share|improve this question


























      1












      1








      1








      This script sends mail when is ran on Windows and Linux, but not on Andorid. What is the issue?



      My app requirements in p-4-a are python3, kivy, openssl. Permission is INTERNET. App crashes when I run method below.



      def send_report(self):
      server = smtplib.SMTP("smtp.gmail.com", 587)
      server.ehlo()
      server.starttls()
      server.ehlo()
      server.login('sender_email', 'sender_pass')
      server.sendmail('sender_email', 'receiver_email', 'Some msg')
      server.close()









      share|improve this question
















      This script sends mail when is ran on Windows and Linux, but not on Andorid. What is the issue?



      My app requirements in p-4-a are python3, kivy, openssl. Permission is INTERNET. App crashes when I run method below.



      def send_report(self):
      server = smtplib.SMTP("smtp.gmail.com", 587)
      server.ehlo()
      server.starttls()
      server.ehlo()
      server.login('sender_email', 'sender_pass')
      server.sendmail('sender_email', 'receiver_email', 'Some msg')
      server.close()






      python-3.x email smtp kivy buildozer






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 25 at 1:41









      eyllanesc

      93.4k123768




      93.4k123768










      asked Mar 24 at 3:54









      Josip RastočićJosip Rastočić

      61




      61






















          0






          active

          oldest

          votes












          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55320587%2fsend-email-script-works-on-win-but-not-on-andorid%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55320587%2fsend-email-script-works-on-win-but-not-on-andorid%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript