omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular
    1. Home
    2. jaganat

    Welcome!

    This is the community forum for my apps Pythonista and Editorial.

    For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.


    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 9
    • Best 0
    • Controversial 0
    • Groups 0

    jaganat

    @jaganat

    0
    Reputation
    577
    Profile views
    9
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    jaganat Unfollow Follow

    Latest posts made by jaganat

    • move caret to original position

      In a workflow to move an action to another project in a .taskpaper file, how do I do to make the caret return to the original position (the line where the action was) once the task is moved?

      posted in Editorial
      jaganat
      jaganat
    • RE: move caret to original position

      Yes, that is a solution! Thank you, john

      posted in Editorial
      jaganat
      jaganat
    • RE: What Features Would you like in Editorial?

      A feature that would greatly help my workflow is the ability to bookmark folders

      posted in Editorial
      jaganat
      jaganat
    • Untitled

      (Post was deleted)

      posted in Editorial
      jaganat
      jaganat
    • Repeating workflow

      How can I make a whole workflow to repeat itself until I want to stop it. I need it in a data entry task which entails multiple entries.
      I tried with repeat and if-then with no luck.

      posted in Editorial
      jaganat
      jaganat
    • Search multiple tags in taskpaper syntax

      It would be fantastic if someone will make a Python script to search and show multiple @tags in taskpaper syntax as a way to filter tasks more efficiently than this

      posted in Editorial
      jaganat
      jaganat
    • email sending w/o prompt

      Is there a way to send an email w/o having to press send during the workflow? Python?

      posted in Editorial
      jaganat
      jaganat
    • RE: email sending w/o prompt

      Getting there.... but

      I don't know how to insert the workflow variables 'nombre' and 'email' in the script:

      import workflow
      
      nombre = workflow.get_variable('nombre')
      email = workflow.get_variable('email')
      
      import smtplib
      
      SERVER = "localhost"
      
      FROM = "me@myemail.com"
      TO = ["email"] # must be a list
      
      SUBJECT = "Bienvenido a Focus Integral"
      
      TEXT = "Apreciado 'nombre'"
      
      message = """\
      From: %s
      To: %s
      Subject: %s
      
      %s
      """ % (FROM, ", ".join(TO), SUBJECT, TEXT)
      
      server = smtplib.SMTP(SERVER)
      server.sendmail(FROM, TO, message)
      server.quit()
      
      posted in Editorial
      jaganat
      jaganat
    • RE: email sending w/o prompt

      Lost in the Python world... Anyone could please post a standard code to insert in a workflow to send an email build by the action "Compose email" in Editorial?

      posted in Editorial
      jaganat
      jaganat