Giter VIP home page Giter VIP logo

email-automation's Introduction

Cool you found me

Hi there ๐Ÿ‘‹

I am Paul, I love writing open-source software.

Besides that I also love developing websites, sketching, 3d modeling, website designing, illustrations, and birds ๐Ÿฆš

open source python libraries:

Read the tutorial I wrote on PyQt framework for you:

  1. part-1
  2. part-2

Finding it hard to deploy your application to AWS? Don't worry I got you covered

Here go through this blog I wrote on AWS just for you: https://github.com/PaulleDemon/AWS-deployment

Cool trick you probably didn't know on github.:

Go to a repository and hit the . key and watch the repository open in Web VsCode


Other profiles

Check out some of my website designs on Behance

Check out my 3d modeling I did some time ago on Artstation

I am known as Art in Stackoverflow

profile for Art on Stack Exchange, a network of free, community-driven Q&A sites

If you love my open-source projects consider buying me a cup of coffee. Thank you.

email-automation's People

Contributors

paulledemon avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

email-automation's Issues

Docker Version

Hi,

Is it possible to have a docker version of this?

I have been able to get the UI working after running both python manage.py migrate and python manage.py runserver.

Having to build the redis server manually as well as running the other commands above, it would be beneficial to have this deployed within a docker-compose.yaml file

Is there any reason why that would not work?

Login Error for email

I received a BadCredentials error through Celery when logging in with an email and password I know are correct (I used them to log in to Gmail using an incognito browser).

[2023-11-29 22:30:24,746: INFO/Beat] DatabaseScheduler: Schedule changed.
[2023-11-29 22:39:00,006: INFO/Beat] Scheduler: Sending due task email_9 (run_schedule_email)
[2023-11-29 22:39:00,013: INFO/MainProcess] Task run_schedule_email[c0ebf2ae-fe05-46ac-982d-b1e3759a9cf9] received
[2023-11-29 22:39:00,016: INFO/ForkPoolWorker-17] run_schedule_email[c0ebf2ae-fe05-46ac-982d-b1e3759a9cf9]: working 9
[2023-11-29 22:39:01,188: INFO/ForkPoolWorker-17] run_schedule_email[c0ebf2ae-fe05-46ac-982d-b1e3759a9cf9]: Auth error (535, b'5.7.8 Username and Password not accepted. Learn more at\n5.7.8  https://support.google.com/mail/?p=BadCredentials g10-20020a5d64ea000000b003330f9287a8sm5673359wri.51 - gsmtp')

How can I check the email and password it is using?

Saving campaign without logging in

Hi,

This software looks great!

I am deploying locally and would like to produce email campaigns without the need to sign up to your site.

Is there a way to do this?

Thanks

Issue running Tailwind

After running the command python manage.py tailwind build, I get this error:

Note: NumExpr detected 16 cores but "NUMEXPR_MAX_THREADS" not set, so enforcing safe limit of 8.
Note: NumExpr detected 16 cores but "NUMEXPR_MAX_THREADS" not set, so enforcing safe limit of 8.
NumExpr defaulting to 8 threads.
NumExpr defaulting to 8 threads.

> [email protected] build
> npm run build:clean && npm run build:tailwind


> [email protected] build:clean
> rimraf ../static/css/dist


> [email protected] build:tailwind
> cross-env NODE_ENV=production tailwindcss --postcss -i ./src/styles.css -o ../static/css/dist/styles.css --minify

node:events:491
      throw er; // Unhandled 'error' event
      ^

Error: spawn tailwindcss ENOENT
    at ChildProcess._handle.onexit (node:internal/child_process:283:19)
    at onErrorNT (node:internal/child_process:476:16)
    at process.processTicksAndRejections (node:internal/process/task_queues:82:21)
Emitted 'error' event on ChildProcess instance at:
    at ChildProcess._handle.onexit (node:internal/child_process:289:12)
    at onErrorNT (node:internal/child_process:476:16)
    at process.processTicksAndRejections (node:internal/process/task_queues:82:21) {
  errno: -2,
  code: 'ENOENT',
  syscall: 'spawn tailwindcss',
  path: 'tailwindcss',
  spawnargs: [
    '--postcss',
    '-i',
    './src/styles.css',
    '-o',
    '../static/css/dist/styles.css',
    '--minify'
  ]
}

Node.js v18.9.0

Is this a Node.js dependency issue?

Celery Failed to send email

After running celery -A email_automation worker -l info -B --scheduler django_celery_beat.schedulers:DatabaseScheduler and creating an email campaign, I get the following error when scheduling an automatic email

[2023-11-29 21:39:19,799: INFO/Beat] DatabaseScheduler: Schedule changed.
[2023-11-29 21:48:00,006: INFO/Beat] Scheduler: Sending due task email_6 (run_schedule_email)
[2023-11-29 21:48:00,010: INFO/MainProcess] Task run_schedule_email[3539ca73-0ea3-4c91-9693-9ee83fb7cb11] received
[2023-11-29 21:48:00,010: INFO/ForkPoolWorker-17] run_schedule_email[3539ca73-0ea3-4c91-9693-9ee83fb7cb11]: working 6
[2023-11-29 21:48:00,044: INFO/ForkPoolWorker-17] run_schedule_email[3539ca73-0ea3-4c91-9693-9ee83fb7cb11]: request error: HTTPConnectionPool(host='localhost', port=8000): Max retries exceeded with url: /media/email-files/EmailList_bN8gNuj.xlsx (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fa43b165750>: Failed to establish a new connection: [Errno 111] Connection refused'))
[2023-11-29 21:48:00,082: INFO/ForkPoolWorker-17] Task run_schedule_email[3539ca73-0ea3-4c91-9693-9ee83fb7cb11] succeeded in 0.07164779999993698s: None
[2023-11-29 21:48:05,030: INFO/Beat] DatabaseScheduler: Schedule changed.

What is it trying to connect to on port 8000?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.